From 30bbc169acce4e633c24ccfad2ca58264f954e13 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 23 Jun 2026 15:57:08 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v6 --- .github/workflows/fuzzing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fuzzing.yml b/.github/workflows/fuzzing.yml index 476350e..898a96d 100644 --- a/.github/workflows/fuzzing.yml +++ b/.github/workflows/fuzzing.yml @@ -61,7 +61,7 @@ jobs: shared-key: "cargo-fuzz-cache-key" cache-directories: "fuzz/target" - name: Restore Cached Corpus - uses: actions/cache/restore@v5 + uses: actions/cache/restore@v6 with: key: corpus-cache-${{ matrix.test-target.name }} path: | @@ -72,7 +72,7 @@ jobs: run: | cargo fuzz run ${{ matrix.test-target.name }} -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0 - name: Save Corpus Cache - uses: actions/cache/save@v5 + uses: actions/cache/save@v6 with: key: corpus-cache-${{ matrix.test-target.name }} path: |