Skip to content

Commit

Permalink
Update cache action to v4 (#6744)
Browse files Browse the repository at this point in the history
- consistent with other usages of `actions/cache` in workflows
- addresses a warning raised by GitHub:
  ```
  Verify MSRV
  The following actions use a deprecated Node.js version and will be
  forced to run on node20: actions/cache@v3.
  ```
  • Loading branch information
findepi authored Nov 17, 2024
1 parent 84cf0d9 commit ad93ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/setup-builder/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ runs:
using: "composite"
steps:
- name: Cache Cargo
uses: actions/cache@v3
uses: actions/cache@v4
with:
# these represent dependencies downloaded by cargo
# and thus do not depend on the OS, arch nor rust version.
Expand Down

0 comments on commit ad93ceb

Please sign in to comment.