Skip to content

Commit

Permalink
fix: Upgrade deprecated artifact upload/download handlers (#415)
Browse files Browse the repository at this point in the history
Seen on #380 CI:

Error: This request has been automatically failed because it uses a deprecated version of `actions/upload-artifact: v2`. Learn more: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/

Signed-off-by: Martijn Stevenson <[email protected]>
  • Loading branch information
martijneken authored Sep 10, 2024
1 parent 21a5b08 commit 7c975bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
done
- name: Upload test data
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: test_data
path: bazel-bin/test/test_data/*.wasm
Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
${{ matrix.arch }}-${{ matrix.os }}-${{ matrix.engine }}-${{ steps.cache-key.outputs.uniq }}-
- name: Download test data
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: test_data
path: test/test_data/
Expand Down

0 comments on commit 7c975bb

Please sign in to comment.