Skip to content

Commit f770a43

Browse files
authored
ci: update version of Cache action (#239)
Bump version of `actions/cache` from `@v3` to `@v4`, as recommended by warnings in CI runs (https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/).
1 parent aba780e commit f770a43

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-checks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: dtolnay/rust-toolchain@stable
2727

2828
- name: Cargo cache
29-
uses: actions/cache@v3
29+
uses: actions/cache@v4
3030
with:
3131
path: |
3232
~/.cargo/registry/index/
@@ -74,7 +74,7 @@ jobs:
7474
uses: dtolnay/rust-toolchain@stable
7575

7676
- name: Cargo cache
77-
uses: actions/cache@v3
77+
uses: actions/cache@v4
7878
with:
7979
path: |
8080
~/.cargo/registry/index/

.github/workflows/rust-checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
uses: dtolnay/rust-toolchain@stable
4848

4949
- name: Cargo cache
50-
uses: actions/cache@v3
50+
uses: actions/cache@v4
5151
with:
5252
path: |
5353
~/.cargo/registry/index/

0 commit comments

Comments
 (0)