Skip to content

Commit cb8bfe5

Browse files
Update GitHub Artifact Actions
1 parent 7c99d67 commit cb8bfe5

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/build-and-test.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
cargo build --target wasm32-wasip1 --release
4545
cp target/wasm32-wasip1/release/fix-python-soname.wasm ../fix-python-soname.wasm
4646
- name: Upload WASM artifacts
47-
uses: actions/upload-artifact@v4
47+
uses: actions/upload-artifact@v6
4848
with:
4949
name: wasm-bindings
5050
path: |
@@ -71,7 +71,7 @@ jobs:
7171
steps:
7272
- uses: actions/checkout@v6
7373
- name: Download WASM artifact
74-
uses: actions/download-artifact@v4
74+
uses: actions/download-artifact@v7
7575
with:
7676
name: wasm-bindings
7777
path: npm/${{ matrix.settings.npm_dir }}
@@ -136,14 +136,14 @@ jobs:
136136
shell: bash
137137

138138
- name: Upload npm package artifact
139-
uses: actions/upload-artifact@v4
139+
uses: actions/upload-artifact@v6
140140
with:
141141
name: npm-${{ matrix.settings.npm_dir }}
142142
path: npm/${{ matrix.settings.npm_dir }}
143143
if-no-files-found: error
144144

145145
- name: Upload entrypoints artifact
146-
uses: actions/upload-artifact@v4
146+
uses: actions/upload-artifact@v6
147147
with:
148148
name: entrypoints
149149
path: |
@@ -160,13 +160,13 @@ jobs:
160160
- uses: actions/checkout@v6
161161

162162
- name: Download all npm package artifacts
163-
uses: actions/download-artifact@v4
163+
uses: actions/download-artifact@v7
164164
with:
165165
pattern: npm-*
166166
path: npm-artifacts
167167

168168
- name: Download entrypoints artifact
169-
uses: actions/download-artifact@v4
169+
uses: actions/download-artifact@v7
170170
with:
171171
name: entrypoints
172172
path: .
@@ -194,7 +194,7 @@ jobs:
194194
shell: bash
195195

196196
- name: Upload release bundle
197-
uses: actions/upload-artifact@v4
197+
uses: actions/upload-artifact@v6
198198
with:
199199
name: release-bundle
200200
path: |
@@ -244,12 +244,12 @@ jobs:
244244
architecture: ${{ matrix.settings.architecture }}
245245
- run: pnpm install
246246
- name: Download npm package artifact
247-
uses: actions/download-artifact@v4
247+
uses: actions/download-artifact@v7
248248
with:
249249
name: npm-${{ matrix.settings.npm_dir }}
250250
path: npm/${{ matrix.settings.npm_dir }}
251251
- name: Download entrypoints artifact
252-
uses: actions/download-artifact@v4
252+
uses: actions/download-artifact@v7
253253
with:
254254
name: entrypoints
255255
path: .
@@ -301,12 +301,12 @@ jobs:
301301
- name: Install dependencies
302302
run: pnpm install
303303
- name: Download npm package artifact
304-
uses: actions/download-artifact@v4
304+
uses: actions/download-artifact@v7
305305
with:
306306
name: npm-${{ matrix.settings.npm_dir }}
307307
path: npm/${{ matrix.settings.npm_dir }}
308308
- name: Download entrypoints artifact
309-
uses: actions/download-artifact@v4
309+
uses: actions/download-artifact@v7
310310
with:
311311
name: entrypoints
312312
path: .

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
registry-url: 'https://registry.npmjs.org'
5858
cache: 'pnpm'
5959
- run: pnpm install
60-
- uses: actions/download-artifact@v4
60+
- uses: actions/download-artifact@v7
6161
with:
6262
name: release-bundle
6363
path: .

0 commit comments

Comments
 (0)