Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:

# Restore corpus from previous runs
- name: Restore fuzz corpus
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
${{ matrix.corpus_path }}/testdata/fuzz/
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:

# Save corpus
- name: Save fuzz corpus
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
if: always()
with:
path: |
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
go-version-file: .go-version

- name: Restore fuzz corpus
uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
with:
path: |
builtins/tests/${{ matrix.name }}/testdata/fuzz/
Expand All @@ -165,7 +165,7 @@ jobs:
done

- name: Save fuzz corpus
uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5.0.3
uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
if: always()
with:
path: |
Expand Down
Loading