Skip to content

Commit c607a38

Browse files
Merge pull request #1387 from square/renovate/actions-cache-digest
Update actions/cache digest to 5a3ec84
2 parents 035d18d + 654fd30 commit c607a38

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/actions/gradle-task/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ runs:
6969
- name: restore cache for ${{inputs.write-cache-key}}
7070
id: restore-write-cache
7171
if: inputs.write-cache-key != 'null'
72-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
72+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
7373
with:
7474
path: |
7575
~/.gradle/caches/build-cache-1
@@ -87,7 +87,7 @@ runs:
8787
# Skipped if the restore-cache-key wasn't set, or if the write-cache-key restore had an exact match.
8888
- name: restore cache for ${{inputs.restore-cache-key}}
8989
if: inputs.restore-cache-key != 'null' && steps.restore-write-cache.outputs.cache-hit != 'true'
90-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
90+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
9191
with:
9292
path: |
9393
~/.gradle/caches/build-cache-1
@@ -120,7 +120,7 @@ runs:
120120
# Windows runners are welcome to *read* the cross-OS cache, but the directories get weird if
121121
# they try to write to it.
122122
- name: save the '${{inputs.write-cache-key}}' cache
123-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
123+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
124124
id: save-write-cache-key
125125
if: inputs.write-cache-key != 'null' && steps.restore-write-cache.outputs.cache-hit != 'true'
126126
with:

.github/actions/gradle-tasks-with-emulator/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ runs:
5656

5757
# Get the AVD if it's already cached.
5858
- name: AVD cache
59-
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
59+
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
6060
id: restore-avd-cache
6161
with:
6262
path: |
@@ -83,7 +83,7 @@ runs:
8383
- name: cache new AVD before tests
8484
if: steps.restore-avd-cache.outputs.cache-hit != 'true'
8585
id: save-avd-cache
86-
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
86+
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
8787
with:
8888
path: |
8989
~/.android/avd/*

0 commit comments

Comments
 (0)