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 2052ec1 commit 9cf781bCopy full SHA for 9cf781b
.github/workflows/fuzz.yml
@@ -28,7 +28,7 @@ jobs:
28
- name: fuzz
29
run: cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
30
- run: echo "${{ matrix.fuzz_target }}.rs" >executed_${{ matrix.fuzz_target }}
31
- - uses: actions/upload-artifact@v2
+ - uses: actions/upload-artifact@v3
32
with:
33
name: executed_${{ matrix.fuzz_target }}
34
path: executed_${{ matrix.fuzz_target }}
@@ -39,7 +39,7 @@ jobs:
39
runs-on: ubuntu-latest
40
steps:
41
- uses: actions/checkout@v2
42
- - uses: actions/download-artifact@v2
+ - uses: actions/download-artifact@v3
43
- name: Display structure of downloaded files
44
run: ls -R
45
- run: find executed_* -type f -exec cat {} + | sort > executed
0 commit comments