Skip to content

Commit

Permalink
Merge #767: bump download- and upload-artifact to v4
Browse files Browse the repository at this point in the history
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
  • Loading branch information
apoelstra committed Nov 4, 2024
2 parents 3a85952 + 35383ae commit acbd120
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cron-daily-fuzz.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ roundtrip_semantic,
- name: fuzz
run: cd fuzz && ./fuzz.sh "${{ matrix.fuzz_target }}"
- run: echo "${{ matrix.fuzz_target }}" >executed_${{ matrix.fuzz_target }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: executed_${{ matrix.fuzz_target }}
path: executed_${{ matrix.fuzz_target }}
Expand All @@ -57,7 +57,7 @@ roundtrip_semantic,
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- run: find executed_* -type f -exec cat {} + | sort > executed
Expand Down
4 changes: 2 additions & 2 deletions fuzz/generate-files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
- name: fuzz
run: cd fuzz && ./fuzz.sh "\${{ matrix.fuzz_target }}"
- run: echo "\${{ matrix.fuzz_target }}" >executed_\${{ matrix.fuzz_target }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: executed_\${{ matrix.fuzz_target }}
path: executed_\${{ matrix.fuzz_target }}
Expand All @@ -91,7 +91,7 @@ $(for name in $(listTargetNames); do echo "$name,"; done)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v4
- name: Display structure of downloaded files
run: ls -R
- run: find executed_* -type f -exec cat {} + | sort > executed
Expand Down

0 comments on commit acbd120

Please sign in to comment.