From 2f37620323983f009229a9709542d47f4a568520 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 17:37:12 +0000 Subject: [PATCH] build(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/fuzz.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index fae577a..6000400 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -66,7 +66,7 @@ jobs: # seeds and re-derives the same shallow coverage forever - which looks like # fuzzing and is not. - name: Restore corpus - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v6 with: path: crates/ffai-mercury/fuzz/corpus/${{ matrix.target }} key: fuzz-corpus-${{ matrix.target }}-${{ github.run_id }} @@ -81,7 +81,7 @@ jobs: - name: Save corpus if: always() - uses: actions/cache/save@v4 + uses: actions/cache/save@v6 with: path: crates/ffai-mercury/fuzz/corpus/${{ matrix.target }} key: fuzz-corpus-${{ matrix.target }}-${{ github.run_id }}