Skip to content

Commit b2252b7

Browse files
committed
ci: upgrade upload-artifact and download-artifact to v4
Apparently v2 is deprecated and no longer supported. v3 works for us and v4 has some new limit on the size of uploads, but those shouldn't be a problem here, so jump all the way to v4.
1 parent 207c6dd commit b2252b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: fuzz
2929
run: cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
3030
- run: echo "${{ matrix.fuzz_target }}.rs" >executed_${{ matrix.fuzz_target }}
31-
- uses: actions/upload-artifact@v2
31+
- uses: actions/upload-artifact@v4
3232
with:
3333
name: executed_${{ matrix.fuzz_target }}
3434
path: executed_${{ matrix.fuzz_target }}
@@ -39,7 +39,7 @@ jobs:
3939
runs-on: ubuntu-latest
4040
steps:
4141
- uses: actions/checkout@v2
42-
- uses: actions/download-artifact@v2
42+
- uses: actions/download-artifact@v4
4343
- name: Display structure of downloaded files
4444
run: ls -R
4545
- run: find executed_* -type f -exec cat {} + | sort > executed

0 commit comments

Comments
 (0)