@@ -40,14 +40,14 @@ jobs:
40
40
steps :
41
41
- uses : actions/checkout@v3
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.
@@ -100,13 +100,13 @@ jobs:
100
100
export PATH=$PATH:$HOME/d/protoc/bin
101
101
protoc --version
102
102
- name : Cache Cargo
103
- uses : actions/cache@v2
103
+ uses : actions/cache@v3
104
104
with :
105
105
path : /github/home/.cargo
106
106
# this key equals the ones on `linux-build-lib` for re-use
107
107
key : cargo-cache-
108
108
- name : Cache Rust dependencies
109
- uses : actions/cache@v2
109
+ uses : actions/cache@v3
110
110
with :
111
111
path : /github/home/target
112
112
# this key equals the ones on `linux-build-lib` for re-use
@@ -157,13 +157,13 @@ jobs:
157
157
export PATH=$PATH:$HOME/d/protoc/bin
158
158
protoc --version
159
159
- name : Cache Cargo
160
- uses : actions/cache@v2
160
+ uses : actions/cache@v3
161
161
with :
162
162
path : /github/home/.cargo
163
163
# this key equals the ones on `linux-build-lib` for re-use
164
164
key : cargo-cache-
165
165
- name : Cache Rust dependencies
166
- uses : actions/cache@v2
166
+ uses : actions/cache@v3
167
167
with :
168
168
path : /github/home/target
169
169
# this key equals the ones on `linux-build-lib` for re-use
@@ -276,13 +276,13 @@ jobs:
276
276
with :
277
277
submodules : true
278
278
- name : Cache Cargo
279
- uses : actions/cache@v2
279
+ uses : actions/cache@v3
280
280
with :
281
281
path : /github/home/.cargo
282
282
# this key equals the ones on `linux-build-lib` for re-use
283
283
key : cargo-cache-
284
284
- name : Cache Rust dependencies
285
- uses : actions/cache@v2
285
+ uses : actions/cache@v3
286
286
with :
287
287
path : /github/home/target
288
288
# this key equals the ones on `linux-build-lib` for re-use
@@ -319,13 +319,13 @@ jobs:
319
319
with :
320
320
submodules : true
321
321
- name : Cache Cargo
322
- uses : actions/cache@v2
322
+ uses : actions/cache@v3
323
323
with :
324
324
path : /github/home/.cargo
325
325
# this key equals the ones on `linux-build-lib` for re-use
326
326
key : cargo-cache-
327
327
- name : Cache Rust dependencies
328
- uses : actions/cache@v2
328
+ uses : actions/cache@v3
329
329
with :
330
330
path : /github/home/target
331
331
# this key equals the ones on `linux-build-lib` for re-use
@@ -366,13 +366,13 @@ jobs:
366
366
# with:
367
367
# submodules: true
368
368
# - name: Cache Cargo
369
- # uses: actions/cache@v2
369
+ # uses: actions/cache@v3
370
370
# with:
371
371
# path: /home/runner/.cargo
372
372
# # this key is not equal because the user is different than on a container (runner vs github)
373
373
# key: cargo-coverage-cache-
374
374
# - name: Cache Rust dependencies
375
- # uses: actions/cache@v2
375
+ # uses: actions/cache@v3
376
376
# with:
377
377
# path: /home/runner/target
378
378
# # this key is not equal because coverage uses different compilation flags.
0 commit comments