From 19e2b042a8b68ce7ecd7b889b7f45b470851f07f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jan 2024 04:35:10 +0000 Subject: [PATCH] build(deps): bump actions/cache from 3 to 4 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](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 6aff78415..74f83bc09 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -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 }} @@ -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 }}