From 93004a6beebaf4f9727c3757eb8545a82cabba84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 18:23:50 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 5 to 6 Bumps [actions/cache](https://github.com/actions/cache) from 5 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/v5...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/fuzz.yml | 2 +- .github/workflows/validate-shared.yml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 2157fc4..bb92754 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -56,7 +56,7 @@ jobs: run: cargo install cargo-fuzz - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry diff --git a/.github/workflows/validate-shared.yml b/.github/workflows/validate-shared.yml index 4365008..30a19af 100644 --- a/.github/workflows/validate-shared.yml +++ b/.github/workflows/validate-shared.yml @@ -25,19 +25,19 @@ jobs: toolchain: stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -69,19 +69,19 @@ jobs: toolchain: stable - name: Cache cargo registry - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/registry key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo index - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: ~/.cargo/git key: ${{ runner.os }}-cargo-index-${{ hashFiles('**/Cargo.lock') }} - name: Cache cargo build - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: target key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }} @@ -113,7 +113,7 @@ jobs: toolchain: stable - name: Cache cargo - uses: actions/cache@v5 + uses: actions/cache@v6 with: path: | ~/.cargo/registry