@@ -40,14 +40,14 @@ jobs:
4040 steps :
4141 - uses : actions/checkout@v2
4242 - name : Cache Cargo
43- uses : actions/cache@v2
43+ uses : actions/cache@v3
4444 with :
4545 # these represent dependencies downloaded by cargo
4646 # and thus do not depend on the OS, arch nor rust version.
4747 path : /github/home/.cargo
4848 key : cargo-cache-
4949 - name : Cache Rust dependencies
50- uses : actions/cache@v2
50+ uses : actions/cache@v3
5151 with :
5252 # these represent compiled steps of both dependencies and arrow
5353 # and thus are specific for a particular OS, arch and rust version.
@@ -103,13 +103,13 @@ jobs:
103103 with :
104104 submodules : true
105105 - name : Cache Cargo
106- uses : actions/cache@v2
106+ uses : actions/cache@v3
107107 with :
108108 path : /github/home/.cargo
109109 # this key equals the ones on `linux-build-lib` for re-use
110110 key : cargo-cache-
111111 - name : Cache Rust dependencies
112- uses : actions/cache@v2
112+ uses : actions/cache@v3
113113 with :
114114 path : /github/home/target
115115 # this key equals the ones on `linux-build-lib` for re-use
@@ -250,13 +250,13 @@ jobs:
250250 # with:
251251 # submodules: true
252252 # - name: Cache Cargo
253- # uses: actions/cache@v2
253+ # uses: actions/cache@v3
254254 # with:
255255 # path: /github/home/.cargo
256256 # # this key equals the ones on `linux-build-lib` for re-use
257257 # key: cargo-cache-
258258 # - name: Cache Rust dependencies
259- # uses: actions/cache@v2
259+ # uses: actions/cache@v3
260260 # with:
261261 # path: /github/home/target
262262 # # this key equals the ones on `linux-build-lib` for re-use
@@ -315,13 +315,13 @@ jobs:
315315 with :
316316 submodules : true
317317 - name : Cache Cargo
318- uses : actions/cache@v2
318+ uses : actions/cache@v3
319319 with :
320320 path : /github/home/.cargo
321321 # this key equals the ones on `linux-build-lib` for re-use
322322 key : cargo-cache-
323323 - name : Cache Rust dependencies
324- uses : actions/cache@v2
324+ uses : actions/cache@v3
325325 with :
326326 path : /github/home/target
327327 # this key equals the ones on `linux-build-lib` for re-use
@@ -360,13 +360,13 @@ jobs:
360360 with :
361361 submodules : true
362362 - name : Cache Cargo
363- uses : actions/cache@v2
363+ uses : actions/cache@v3
364364 with :
365365 path : /github/home/.cargo
366366 # this key equals the ones on `linux-build-lib` for re-use
367367 key : cargo-cache-
368368 - name : Cache Rust dependencies
369- uses : actions/cache@v2
369+ uses : actions/cache@v3
370370 with :
371371 path : /github/home/target
372372 # this key equals the ones on `linux-build-lib` for re-use
@@ -419,13 +419,13 @@ jobs:
419419# with:
420420# submodules: true
421421# - name: Cache Cargo
422- # uses: actions/cache@v2
422+ # uses: actions/cache@v3
423423# with:
424424# path: /github/home/.cargo
425425# # this key equals the ones on `linux-build-lib` for re-use
426426# key: cargo-cache-
427427# - name: Cache Rust dependencies
428- # uses: actions/cache@v2
428+ # uses: actions/cache@v3
429429# with:
430430# path: /github/home/target
431431# # this key equals the ones on `linux-build-lib` for re-use
@@ -466,13 +466,13 @@ jobs:
466466# with:
467467# submodules: true
468468# - name: Cache Cargo
469- # uses: actions/cache@v2
469+ # uses: actions/cache@v3
470470# with:
471471# path: /home/runner/.cargo
472472# # this key is not equal because the user is different than on a container (runner vs github)
473473# key: cargo-coverage-cache-
474474# - name: Cache Rust dependencies
475- # uses: actions/cache@v2
475+ # uses: actions/cache@v3
476476# with:
477477# path: /home/runner/target
478478# # this key is not equal because coverage uses different compilation flags.
0 commit comments