Skip to content

Commit a44a8aa

Browse files
Bump actions/cache from 2 to 3 (#517)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent f9448f4 commit a44a8aa

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

.github/workflows/python_test.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
run: |
3838
rustup component add rustfmt
3939
- name: Cache Cargo
40-
uses: actions/cache@v2
40+
uses: actions/cache@v3
4141
with:
4242
path: /home/runner/.cargo
4343
key: cargo-maturin-cache-
4444
- name: Cache Rust dependencies
45-
uses: actions/cache@v2
45+
uses: actions/cache@v3
4646
with:
4747
path: /home/runner/target
4848
key: target-maturin-cache-

.github/workflows/rust.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
steps:
4141
- uses: actions/checkout@v3
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.
@@ -100,13 +100,13 @@ jobs:
100100
export PATH=$PATH:$HOME/d/protoc/bin
101101
protoc --version
102102
- name: Cache Cargo
103-
uses: actions/cache@v2
103+
uses: actions/cache@v3
104104
with:
105105
path: /github/home/.cargo
106106
# this key equals the ones on `linux-build-lib` for re-use
107107
key: cargo-cache-
108108
- name: Cache Rust dependencies
109-
uses: actions/cache@v2
109+
uses: actions/cache@v3
110110
with:
111111
path: /github/home/target
112112
# this key equals the ones on `linux-build-lib` for re-use
@@ -157,13 +157,13 @@ jobs:
157157
export PATH=$PATH:$HOME/d/protoc/bin
158158
protoc --version
159159
- name: Cache Cargo
160-
uses: actions/cache@v2
160+
uses: actions/cache@v3
161161
with:
162162
path: /github/home/.cargo
163163
# this key equals the ones on `linux-build-lib` for re-use
164164
key: cargo-cache-
165165
- name: Cache Rust dependencies
166-
uses: actions/cache@v2
166+
uses: actions/cache@v3
167167
with:
168168
path: /github/home/target
169169
# this key equals the ones on `linux-build-lib` for re-use
@@ -276,13 +276,13 @@ jobs:
276276
with:
277277
submodules: true
278278
- name: Cache Cargo
279-
uses: actions/cache@v2
279+
uses: actions/cache@v3
280280
with:
281281
path: /github/home/.cargo
282282
# this key equals the ones on `linux-build-lib` for re-use
283283
key: cargo-cache-
284284
- name: Cache Rust dependencies
285-
uses: actions/cache@v2
285+
uses: actions/cache@v3
286286
with:
287287
path: /github/home/target
288288
# this key equals the ones on `linux-build-lib` for re-use
@@ -319,13 +319,13 @@ jobs:
319319
with:
320320
submodules: true
321321
- name: Cache Cargo
322-
uses: actions/cache@v2
322+
uses: actions/cache@v3
323323
with:
324324
path: /github/home/.cargo
325325
# this key equals the ones on `linux-build-lib` for re-use
326326
key: cargo-cache-
327327
- name: Cache Rust dependencies
328-
uses: actions/cache@v2
328+
uses: actions/cache@v3
329329
with:
330330
path: /github/home/target
331331
# this key equals the ones on `linux-build-lib` for re-use
@@ -366,13 +366,13 @@ jobs:
366366
# with:
367367
# submodules: true
368368
# - name: Cache Cargo
369-
# uses: actions/cache@v2
369+
# uses: actions/cache@v3
370370
# with:
371371
# path: /home/runner/.cargo
372372
# # this key is not equal because the user is different than on a container (runner vs github)
373373
# key: cargo-coverage-cache-
374374
# - name: Cache Rust dependencies
375-
# uses: actions/cache@v2
375+
# uses: actions/cache@v3
376376
# with:
377377
# path: /home/runner/target
378378
# # this key is not equal because coverage uses different compilation flags.

0 commit comments

Comments
 (0)