Bump GitHub Actions Artifacts to v4
v3 is deprecated and causes an automatic fail of fuzz workflow. Bump the version of `actions/upload-artifact` and `actions/download-artifact` to v4.
This commit is contained in:
parent
72823df014
commit
2dad19a20f
|
@ -59,7 +59,7 @@ jobs:
|
|||
echo "Using RUSTFLAGS $RUSTFLAGS"
|
||||
cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
|
||||
- run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }}
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: executed_${{ matrix.fuzz_target }}
|
||||
path: executed_${{ matrix.fuzz_target }}
|
||||
|
@ -70,7 +70,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
- uses: actions/download-artifact@v4
|
||||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
- run: find executed_* -type f -exec cat {} + | sort > executed
|
||||
|
|
|
@ -89,7 +89,7 @@ $(for name in $(listTargetNames); do echo " $name,"; done)
|
|||
echo "Using RUSTFLAGS \$RUSTFLAGS"
|
||||
cd fuzz && ./fuzz.sh "\${{ matrix.fuzz_target }}"
|
||||
- run: echo "\${{ matrix.fuzz_target }}" >executed_\${{ matrix.fuzz_target }}
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: executed_\${{ matrix.fuzz_target }}
|
||||
path: executed_\${{ matrix.fuzz_target }}
|
||||
|
@ -100,7 +100,7 @@ $(for name in $(listTargetNames); do echo " $name,"; done)
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions/download-artifact@v3
|
||||
- uses: actions/download-artifact@v4
|
||||
- name: Display structure of downloaded files
|
||||
run: ls -R
|
||||
- run: find executed_* -type f -exec cat {} + | sort > executed
|
||||
|
|
Loading…
Reference in New Issue