File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
gradle-tasks-with-emulator Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 69
69
- name : restore cache for ${{inputs.write-cache-key}}
70
70
id : restore-write-cache
71
71
if : inputs.write-cache-key != 'null'
72
- uses : actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
72
+ uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
73
73
with :
74
74
path : |
75
75
~/.gradle/caches/build-cache-1
87
87
# Skipped if the restore-cache-key wasn't set, or if the write-cache-key restore had an exact match.
88
88
- name : restore cache for ${{inputs.restore-cache-key}}
89
89
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
91
91
with :
92
92
path : |
93
93
~/.gradle/caches/build-cache-1
@@ -120,7 +120,7 @@ runs:
120
120
# Windows runners are welcome to *read* the cross-OS cache, but the directories get weird if
121
121
# they try to write to it.
122
122
- name : save the '${{inputs.write-cache-key}}' cache
123
- uses : actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
123
+ uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
124
124
id : save-write-cache-key
125
125
if : inputs.write-cache-key != 'null' && steps.restore-write-cache.outputs.cache-hit != 'true'
126
126
with :
Original file line number Diff line number Diff line change 56
56
57
57
# Get the AVD if it's already cached.
58
58
- name : AVD cache
59
- uses : actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
59
+ uses : actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
60
60
id : restore-avd-cache
61
61
with :
62
62
path : |
83
83
- name : cache new AVD before tests
84
84
if : steps.restore-avd-cache.outputs.cache-hit != 'true'
85
85
id : save-avd-cache
86
- uses : actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf # v4
86
+ uses : actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
87
87
with :
88
88
path : |
89
89
~/.android/avd/*
You can’t perform that action at this time.
0 commit comments