We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f6d2d commit 67589b9Copy full SHA for 67589b9
.github/workflows/fuzzing.yml
@@ -57,7 +57,7 @@ jobs:
57
shared-key: "cargo-fuzz-cache-key"
58
cache-directories: "fuzz/target"
59
- name: Restore Cached Corpus
60
- uses: actions/cache/restore@v4
+ uses: actions/cache/restore@v5
61
with:
62
key: corpus-cache-${{ matrix.test-target.name }}
63
path: |
@@ -68,7 +68,7 @@ jobs:
68
run: |
69
cargo +nightly fuzz run ${{ matrix.test-target.name }} -- -max_total_time=${{ env.RUN_FOR }} -detect_leaks=0
70
- name: Save Corpus Cache
71
- uses: actions/cache/save@v4
+ uses: actions/cache/save@v5
72
73
74
0 commit comments