File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ jobs:
173
173
# Set up Rust and restore dependencies and targets from cache.
174
174
# This must be done before checking the Rust sources.
175
175
- name : Cache cargo dependencies and targets
176
- uses : actions/cache@v2
176
+ uses : actions/cache@v4
177
177
with :
178
178
path : |
179
179
~/.cargo/registry
@@ -230,22 +230,22 @@ jobs:
230
230
# but will fall back to cache entries from different versions if no match is found.
231
231
- name : Cache stack global package DB
232
232
id : stack-global
233
- uses : actions/cache@v2
233
+ uses : actions/cache@v4
234
234
with :
235
235
path : ~/.stack
236
236
key : ${{ runner.os }}-{{ env.dummy }}-stack-global-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}
237
237
restore-keys : |
238
238
${{ runner.os }}-{{ env.dummy }}-stack-global-${{ matrix.plan.ghc }}
239
239
- name : Cache stack-installed programs in '~/.local/bin'
240
240
id : stack-programs
241
- uses : actions/cache@v2
241
+ uses : actions/cache@v4
242
242
with :
243
243
path : ~/.local/bin
244
244
key : ${{ runner.os }}-{{ env.dummy }}-stack-programs-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}
245
245
restore-keys : |
246
246
${{ runner.os }}-{{ env.dummy }}-stack-programs-${{ matrix.plan.ghc }}
247
247
- name : Cache '.stack-work'
248
- uses : actions/cache@v2
248
+ uses : actions/cache@v4
249
249
with :
250
250
path : .stack-work
251
251
key : ${{ runner.os }}-{{ env.dummy }}-stack-work-${{ matrix.plan.ghc }}-${{ hashFiles('**.yaml') }}
You can’t perform that action at this time.
0 commit comments