Skip to content

Commit 9cf781b

Browse files
committed
CI: Upgrade version of upload-artifact action
In the `fuzz` job we are using `upload-artifact@v2` and CI auto-fails because this version has been deprecated. Upgrade to version 3.
1 parent 2052ec1 commit 9cf781b

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@v3
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@v3
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)