Skip to content

Commit 302d7ad

Browse files
fix: artifacts to use v4 since v3 upload and download artifacts were depricated by GitHub earlier this year.
1 parent 083874a commit 302d7ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
112112
- name: Upload test results
113113
if: always()
114-
uses: actions/upload-artifact@v3
114+
uses: actions/upload-artifact@v4
115115
with:
116116
name: test-results-${{ matrix.test-file }}
117117
path: report.json
@@ -123,7 +123,7 @@ jobs:
123123
if: always()
124124
steps:
125125
- name: Download all test results
126-
uses: actions/download-artifact@v3
126+
uses: actions/download-artifact@v4
127127
with:
128128
path: test-results
129129

0 commit comments

Comments
 (0)