@@ -40,14 +40,14 @@ jobs:
40
40
steps :
41
41
- uses : actions/checkout@v2
42
42
- name : Cache Cargo
43
- uses : actions/cache@v2
43
+ uses : actions/cache@v3
44
44
with :
45
45
# these represent dependencies downloaded by cargo
46
46
# and thus do not depend on the OS, arch nor rust version.
47
47
path : /github/home/.cargo
48
48
key : cargo-cache-
49
49
- name : Cache Rust dependencies
50
- uses : actions/cache@v2
50
+ uses : actions/cache@v3
51
51
with :
52
52
# these represent compiled steps of both dependencies and arrow
53
53
# and thus are specific for a particular OS, arch and rust version.
@@ -103,13 +103,13 @@ jobs:
103
103
with :
104
104
submodules : true
105
105
- name : Cache Cargo
106
- uses : actions/cache@v2
106
+ uses : actions/cache@v3
107
107
with :
108
108
path : /github/home/.cargo
109
109
# this key equals the ones on `linux-build-lib` for re-use
110
110
key : cargo-cache-
111
111
- name : Cache Rust dependencies
112
- uses : actions/cache@v2
112
+ uses : actions/cache@v3
113
113
with :
114
114
path : /github/home/target
115
115
# this key equals the ones on `linux-build-lib` for re-use
@@ -250,13 +250,13 @@ jobs:
250
250
# with:
251
251
# submodules: true
252
252
# - name: Cache Cargo
253
- # uses: actions/cache@v2
253
+ # uses: actions/cache@v3
254
254
# with:
255
255
# path: /github/home/.cargo
256
256
# # this key equals the ones on `linux-build-lib` for re-use
257
257
# key: cargo-cache-
258
258
# - name: Cache Rust dependencies
259
- # uses: actions/cache@v2
259
+ # uses: actions/cache@v3
260
260
# with:
261
261
# path: /github/home/target
262
262
# # this key equals the ones on `linux-build-lib` for re-use
@@ -315,13 +315,13 @@ jobs:
315
315
with :
316
316
submodules : true
317
317
- name : Cache Cargo
318
- uses : actions/cache@v2
318
+ uses : actions/cache@v3
319
319
with :
320
320
path : /github/home/.cargo
321
321
# this key equals the ones on `linux-build-lib` for re-use
322
322
key : cargo-cache-
323
323
- name : Cache Rust dependencies
324
- uses : actions/cache@v2
324
+ uses : actions/cache@v3
325
325
with :
326
326
path : /github/home/target
327
327
# this key equals the ones on `linux-build-lib` for re-use
@@ -360,13 +360,13 @@ jobs:
360
360
with :
361
361
submodules : true
362
362
- name : Cache Cargo
363
- uses : actions/cache@v2
363
+ uses : actions/cache@v3
364
364
with :
365
365
path : /github/home/.cargo
366
366
# this key equals the ones on `linux-build-lib` for re-use
367
367
key : cargo-cache-
368
368
- name : Cache Rust dependencies
369
- uses : actions/cache@v2
369
+ uses : actions/cache@v3
370
370
with :
371
371
path : /github/home/target
372
372
# this key equals the ones on `linux-build-lib` for re-use
@@ -419,13 +419,13 @@ jobs:
419
419
# with:
420
420
# submodules: true
421
421
# - name: Cache Cargo
422
- # uses: actions/cache@v2
422
+ # uses: actions/cache@v3
423
423
# with:
424
424
# path: /github/home/.cargo
425
425
# # this key equals the ones on `linux-build-lib` for re-use
426
426
# key: cargo-cache-
427
427
# - name: Cache Rust dependencies
428
- # uses: actions/cache@v2
428
+ # uses: actions/cache@v3
429
429
# with:
430
430
# path: /github/home/target
431
431
# # this key equals the ones on `linux-build-lib` for re-use
@@ -466,13 +466,13 @@ jobs:
466
466
# with:
467
467
# submodules: true
468
468
# - name: Cache Cargo
469
- # uses: actions/cache@v2
469
+ # uses: actions/cache@v3
470
470
# with:
471
471
# path: /home/runner/.cargo
472
472
# # this key is not equal because the user is different than on a container (runner vs github)
473
473
# key: cargo-coverage-cache-
474
474
# - name: Cache Rust dependencies
475
- # uses: actions/cache@v2
475
+ # uses: actions/cache@v3
476
476
# with:
477
477
# path: /home/runner/target
478
478
# # this key is not equal because coverage uses different compilation flags.
0 commit comments