Skip to content

Commit

Permalink
ci: update actions/cache to v4.
Browse files Browse the repository at this point in the history
Note that the only breaking change in this update is
dropping node.js 16 in favor of node.js 20:
see https://github.com/actions/cache/blob/v4/RELEASES.md#400

Signed-off-by: Steven Kalt <[email protected]>
  • Loading branch information
SKalt committed Jun 29, 2024
1 parent 04a9f19 commit e908ced
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Clone
uses: actions/checkout@v4
- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down Expand Up @@ -357,7 +357,7 @@ jobs:
fetch-depth: 1

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
fetch-depth: 1

- name: Cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
Expand Down

0 comments on commit e908ced

Please sign in to comment.