File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 82
82
# bother filing another.
83
83
- name : Probe Cache
84
84
id : cache
85
- uses : actions/cache/restore@v3.3.1
85
+ uses : actions/cache/restore@v4
86
86
with :
87
87
path : ${{ env.CACHED_PATHS }}
88
88
key : ${{ runner.os }}-${{ matrix.toolchain }}-${{ matrix.protocol }}-${{ github.sha }}
92
92
# This will restore the most-recently-written cache (github does this date ordering itself).
93
93
- name : Restore Cache
94
94
if : steps.cache.outputs.cache-hit != 'true'
95
- uses : actions/cache/restore@v3.3.1
95
+ uses : actions/cache/restore@v4
96
96
with :
97
97
path : ${{ env.CACHED_PATHS }}
98
98
key : ${{ steps.cache.outputs.cache-primary-key }}
@@ -144,7 +144,7 @@ jobs:
144
144
./ci-build.sh --use-temp-db --protocol ${{ matrix.protocol }} ${{ matrix.scenario }}
145
145
146
146
# We only _save_ to the cache when we had a cache miss, are running on master, and are the non-txmeta scenario.
147
- - uses : actions/cache/save@v3.3.1
147
+ - uses : actions/cache/save@v4
148
148
if : ${{ steps.cache.outputs.cache-hit != 'true' && github.ref_name == 'master' && matrix.scenario == ''}}
149
149
with :
150
150
path : ${{ env.CACHED_PATHS }}
You can’t perform that action at this time.
0 commit comments