From 67589b933173ae9e501e99d69a2c84120bfd353a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 12 Dec 2025 02:51:06 +0000 Subject: [PATCH] chore(deps): update actions/cache action to v5 --- .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 8346e49..133946c 100644 --- a/.github/workflows/fuzzing.yml +++ b/.github/workflows/fuzzing.yml @@ -57,7 +57,7 @@ jobs: shared-key: "cargo-fuzz-cache-key" cache-directories: "fuzz/target" - name: Restore Cached Corpus - uses: actions/cache/restore@v4 + uses: actions/cache/restore@v5 with: key: corpus-cache-${{ matrix.test-target.name }} path: | @@ -68,7 +68,7 @@ jobs: run: | cargo +nightly fuzz run ${{ matrix.test-target.name }} -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0 - name: Save Corpus Cache - uses: actions/cache/save@v4 + uses: actions/cache/save@v5 with: key: corpus-cache-${{ matrix.test-target.name }} path: |