Skip to content

Commit acbd120

Browse files
committed
Merge #767: bump download- and upload-artifact to v4
35383ae bump download- and upload-artifact to v4 (Andrew Poelstra) Pull request description: Fixes CI ACKs for top commit: sanket1729: ACK 35383ae Tree-SHA512: 88dfcdfa1b8d0457457902502a655a302211b1d48852dce724a509a717866682d87da3f1793ed7bfa4c41aa1d37264d6979e65ecb5df011722b7a7f01ea6a8eb
2 parents 3a85952 + 35383ae commit acbd120

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/cron-daily-fuzz.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ roundtrip_semantic,
4646
- name: fuzz
4747
run: cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
4848
- run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }}
49-
- uses: actions/upload-artifact@v2
49+
- uses: actions/upload-artifact@v4
5050
with:
5151
name: executed_${{ matrix.fuzz_target }}
5252
path: executed_${{ matrix.fuzz_target }}
@@ -57,7 +57,7 @@ roundtrip_semantic,
5757
runs-on: ubuntu-latest
5858
steps:
5959
- uses: actions/checkout@v2
60-
- uses: actions/download-artifact@v2
60+
- uses: actions/download-artifact@v4
6161
- name: Display structure of downloaded files
6262
run: ls -R
6363
- run: find executed_* -type f -exec cat {} + | sort > executed

fuzz/generate-files.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
8080
- name: fuzz
8181
run: cd fuzz && ./fuzz.sh "\${{ matrix.fuzz_target }}"
8282
- run: echo "\${{ matrix.fuzz_target }}" >executed_\${{ matrix.fuzz_target }}
83-
- uses: actions/upload-artifact@v2
83+
- uses: actions/upload-artifact@v4
8484
with:
8585
name: executed_\${{ matrix.fuzz_target }}
8686
path: executed_\${{ matrix.fuzz_target }}
@@ -91,7 +91,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
9191
runs-on: ubuntu-latest
9292
steps:
9393
- uses: actions/checkout@v2
94-
- uses: actions/download-artifact@v2
94+
- uses: actions/download-artifact@v4
9595
- name: Display structure of downloaded files
9696
run: ls -R
9797
- run: find executed_* -type f -exec cat {} + | sort > executed

0 commit comments

Comments
 (0)