Skip to content

Commit

Permalink
Bump actions/cache from 3.3.2 to 4.0.1
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 4.0.1.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3.3.2...v4.0.1)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 4, 2024
1 parent a66ce68 commit 60cb875
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: echo "version=$(rustc --version)" >> $GITHUB_OUTPUT

- name: Cache cargo index
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.1
with:
path: ~/.cargo/registry/index
key: index-${{ runner.os }}-${{ github.run_number }}
Expand All @@ -104,7 +104,7 @@ jobs:
# run: cargo generate-lockfile
- name: Cache cargo registry
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.1
with:
path: ~/.cargo/registry/cache
key: registry-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
Expand All @@ -113,7 +113,7 @@ jobs:
run: cargo fetch

- name: Cache target directory
uses: actions/cache@v3.3.2
uses: actions/cache@v4.0.1
with:
path: target
key: cache-target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
Expand Down

0 comments on commit 60cb875

Please sign in to comment.