Skip to content

Commit

Permalink
CI: Update actions/cache to v4 and always cache fuzzer corpus.
Browse files Browse the repository at this point in the history
The `save-always` option is new in v4.
  • Loading branch information
kpreid committed Jan 23, 2024
1 parent 88d5641 commit 473a1bc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,10 @@ jobs:
run: cargo install cargo-fuzz

- name: Cache fuzzer corpus
uses: actions/cache@v3
uses: actions/cache@v4
with:
# Failed runs are useful to cache since they expand the corpus
save-always: true
key: fuzz-corpus
path: |
fuzz/corpus
Expand Down

0 comments on commit 473a1bc

Please sign in to comment.