Skip to content

Commit

Permalink
build(deps): bump actions/cache from 1 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/cache](https://github.com/actions/cache) from 1 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v1...v3)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored and bilelmoussaoui committed Aug 11, 2023
1 parent 1e3a4ef commit 8b6f05b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ jobs:
components: rustfmt, clippy
id: toolchain
- name: Cache cargo registry
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: checks-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: checks-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: target
key: checks-${{ runner.os }}-cargo-target-dir-${{ steps.toolchain.outputs.rustc_hash }}
Expand Down Expand Up @@ -108,17 +108,17 @@ jobs:
echo "::set-env name=LIBGIT2_SYS_USE_PKG_CONFIG::1"
if: matrix.os == 'windows-latest'
- name: Cache cargo registry
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.cargo/registry
key: build-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ~/.cargo/git
key: build-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: target
key: build-${{ runner.os }}-cargo-target-dir-${{ steps.toolchain.outputs.rustc_hash }}
Expand Down

0 comments on commit 8b6f05b

Please sign in to comment.