From cca8bb755c06710c440b881168453f0fc14a52f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 22:37:28 +0000 Subject: [PATCH] ci: bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/fuzz.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index 6eceec3..b910a56 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -74,7 +74,7 @@ jobs: run: cargo install cargo-fuzz - name: Restore corpus - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: fuzz/corpus/${{ matrix.target }} key: fuzz-corpus-${{ matrix.target }}-${{ github.sha }} @@ -104,7 +104,7 @@ jobs: - name: Save corpus if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: path: fuzz/corpus/${{ matrix.target }} key: fuzz-corpus-${{ matrix.target }}-${{ github.sha }} @@ -202,7 +202,7 @@ jobs: run: cargo install cargo-fuzz - name: Restore all corpora - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: fuzz/corpus/ key: fuzz-corpus-all-${{ github.sha }}