Skip to content

Commit

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

---
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 Jan 22, 2024
1 parent 1c7a6b5 commit 19e2b04
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@v3
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: checks-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: checks-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
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@v3
uses: actions/cache@v4
with:
path: ~/.cargo/registry
key: build-${{ runner.os }}-cargo-registry-trimmed
- name: Cache cargo git trees
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.cargo/git
key: build-${{ runner.os }}-cargo-gits-trimmed
- name: Cache cargo build
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: target
key: build-${{ runner.os }}-cargo-target-dir-${{ steps.toolchain.outputs.rustc_hash }}
Expand Down

0 comments on commit 19e2b04

Please sign in to comment.