Skip to content

Commit d705cfd

Browse files
authored
Merge pull request #1277 from square/renovate/actions-cache-digest
Update actions/cache digest to d4323d4
2 parents c885389 + 2074fd4 commit d705cfd

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ runs:
5959
- name: restore cache for ${{inputs.write-cache-key}}
6060
id: restore-write-cache
6161
if: inputs.write-cache-key != 'null'
62-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
62+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
6363
with:
6464
path: |
6565
~/.gradle/caches/build-cache-1
@@ -77,7 +77,7 @@ runs:
7777
# Skipped if the restore-cache-key wasn't set, or if the write-cache-key restore had an exact match.
7878
- name: restore cache for ${{inputs.restore-cache-key}}
7979
if: inputs.restore-cache-key != 'null' && steps.restore-write-cache.outputs.cache-hit != 'true'
80-
uses: actions/cache/restore@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
80+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
8181
with:
8282
path: |
8383
~/.gradle/caches/build-cache-1
@@ -110,7 +110,7 @@ runs:
110110
# Windows runners are welcome to *read* the cross-OS cache, but the directories get weird if
111111
# they try to write to it.
112112
- name: save the '${{inputs.write-cache-key}}' cache
113-
uses: actions/cache/save@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
113+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
114114
id: save-write-cache-key
115115
if: inputs.write-cache-key != 'null' && steps.restore-write-cache.outputs.cache-hit != 'true'
116116
with:

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

+2-2
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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
59+
uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # 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@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4
86+
uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
8787
with:
8888
path: |
8989
~/.android/avd/*

0 commit comments

Comments
 (0)