Skip to content

Commit 9594e44

Browse files
committed
upgrade deprecated gitlab actions
1 parent f77fa62 commit 9594e44

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ roundtrip_confidential,
5151
echo "Using RUSTFLAGS $RUSTFLAGS"
5252
cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
5353
- run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }}
54-
- uses: actions/upload-artifact@v2
54+
- uses: actions/upload-artifact@v4
5555
with:
5656
name: executed_${{ matrix.fuzz_target }}
5757
path: executed_${{ matrix.fuzz_target }}
@@ -62,7 +62,7 @@ roundtrip_confidential,
6262
runs-on: ubuntu-latest
6363
steps:
6464
- uses: actions/checkout@v2
65-
- uses: actions/download-artifact@v2
65+
- uses: actions/download-artifact@v4
6666
- name: Display structure of downloaded files
6767
run: ls -R
6868
- run: find executed_* -type f -exec cat {} + | sort > executed

fuzz/generate-files.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
8282
echo "Using RUSTFLAGS \$RUSTFLAGS"
8383
cd fuzz && ./fuzz.sh "\${{ matrix.fuzz_target }}"
8484
- run: echo "\${{ matrix.fuzz_target }}" >executed_\${{ matrix.fuzz_target }}
85-
- uses: actions/upload-artifact@v2
85+
- uses: actions/upload-artifact@v4
8686
with:
8787
name: executed_\${{ matrix.fuzz_target }}
8888
path: executed_\${{ matrix.fuzz_target }}

0 commit comments

Comments
 (0)