From 35383ae452b3880167457cc58517d4deab39a185 Mon Sep 17 00:00:00 2001 From: Andrew Poelstra Date: Sat, 2 Nov 2024 13:37:48 +0000 Subject: [PATCH] bump download- and upload-artifact to v4 --- .github/workflows/cron-daily-fuzz.yml | 4 ++-- fuzz/generate-files.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cron-daily-fuzz.yml b/.github/workflows/cron-daily-fuzz.yml index c84eabfab..9c2f4e6fc 100644 --- a/.github/workflows/cron-daily-fuzz.yml +++ b/.github/workflows/cron-daily-fuzz.yml @@ -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 }} @@ -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 diff --git a/fuzz/generate-files.sh b/fuzz/generate-files.sh index 8a0c2ad20..743f9066f 100755 --- a/fuzz/generate-files.sh +++ b/fuzz/generate-files.sh @@ -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 }} @@ -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