Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ runs:
echo -n > ~/.gradle/gradle.properties
- name: Gradle Binary Cache Restore
id: gradle-binary-cache-restore
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -42,7 +42,7 @@ runs:
key: ${{ runner.os }}-gradle-binary-${{ hashFiles(format('{0}{1}', github.workspace, '/gradle/wrapper/gradle-wrapper.properties')) }}
- name: Gradle Dependency Cache Restore
id: gradle-dependency-cache-restore
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -53,7 +53,7 @@ runs:
${{ runner.os }}-gradle-deps-
- name: Gradle Build Cache Restore
id: gradle-build-cache-restore
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -66,7 +66,7 @@ runs:
${{ runner.os }}-gradle-build-
- name: Rust Cache Restore
id: rust-cache-restore
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand Down Expand Up @@ -96,7 +96,7 @@ runs:
- name: Gradle Binary Cache Save
id: gradle-binary-cache-save
if: github.event.pull_request.head.sha == '' && steps.gradle-binary-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand All @@ -107,14 +107,14 @@ runs:
- name: Gradle Dependency Cache Save
id: gradle-dependency-cache-save
if: github.event.pull_request.head.sha == '' && steps.gradle-dependency-cache-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809
with:
path: |
~/.gradle/caches/modules-2
key: ${{ steps.gradle-dependency-cache-restore.key }}
- name: Rust Cache Save
id: rust-cache-save
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684
uses: actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809
env:
SEGMENT_DOWNLOAD_TIMEOUT_MINS: "3"
with:
Expand Down