Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Jan 15, 2024
1 parent a66ce68 commit a7547cf
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/[email protected].2
uses: actions/[email protected].3
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/[email protected].2
uses: actions/[email protected].3
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/[email protected].2
uses: actions/[email protected].3
with:
path: target
key: cache-target-${{ runner.os }}-${{ steps.rust-version.outputs.version }}-${{ hashFiles('Cargo.lock') }}
Expand Down

0 comments on commit a7547cf

Please sign in to comment.