Skip to content

Commit 1aa8cb8

Browse files
committed
fix: Upgrade deprecated artifact upload/download handlers
Seen on proxy-wasm#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]>
1 parent 21a5b08 commit 1aa8cb8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
done
7676
7777
- name: Upload test data
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: test_data
8181
path: bazel-bin/test/test_data/*.wasm
@@ -306,7 +306,7 @@ jobs:
306306
${{ matrix.arch }}-${{ matrix.os }}-${{ matrix.engine }}-${{ steps.cache-key.outputs.uniq }}-
307307
308308
- name: Download test data
309-
uses: actions/download-artifact@v2
309+
uses: actions/download-artifact@v4
310310
with:
311311
name: test_data
312312
path: test/test_data/

0 commit comments

Comments
 (0)