From 5983b8bb0add1904040279e5a0d220a51a8a9d7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 08:07:51 +0000 Subject: [PATCH] ci(deps): bump actions/cache from 4 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 6. - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/audit.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml index dd2db20c..278bc582 100644 --- a/.github/workflows/audit.yaml +++ b/.github/workflows/audit.yaml @@ -18,7 +18,7 @@ jobs: steps: - uses: actions/checkout@v6 - uses: dtolnay/rust-toolchain@stable - - uses: actions/cache@v4 + - uses: actions/cache@v6 with: path: ~/.cargo/bin/cargo-audit key: cargo-audit-${{ runner.os }} @@ -33,7 +33,7 @@ jobs: - uses: actions/checkout@master - name: Install Rust run: rustup update stable && rustup default stable - - uses: actions/cache@v5 + - uses: actions/cache@v6 with: path: ${{ runner.tool_cache }}/cargo-vet key: cargo-vet-bin-${{ env.CARGO_VET_VERSION }}