@@ -171,7 +171,7 @@ jobs:
171
171
- name : " Check Rust target content"
172
172
run : ls target/release
173
173
174
- - uses : " actions/upload-artifact@v3 "
174
+ - uses : actions/upload-artifact@v4
175
175
name : " Upload Rust/C Libraries"
176
176
with :
177
177
path : target/release/libjsonlogic_rs.*
@@ -183,7 +183,7 @@ jobs:
183
183
WINDOWS : " ${{ contains(runner.os, 'windows') }}"
184
184
PYTHON : ${{ steps.get-py-path.outputs.path }}
185
185
186
- - uses : " actions/upload-artifact@v3 "
186
+ - uses : actions/upload-artifact@v4
187
187
name : " Upload Python sdist"
188
188
with :
189
189
path : dist/*.tar.gz
@@ -192,7 +192,7 @@ jobs:
192
192
- name : " Build WASM Node Package"
193
193
run : " make build-wasm"
194
194
195
- - uses : " actions/upload-artifact@v3 "
195
+ - uses : actions/upload-artifact@v4
196
196
name : " Upload node package"
197
197
with :
198
198
path : js/
@@ -247,7 +247,7 @@ jobs:
247
247
CIBW_BUILD : ${{ matrix.py }}-${{ matrix.platform.name }}_*
248
248
CIBW_TEST_COMMAND : python {project}/tests/test_py.py
249
249
250
- - uses : actions/upload-artifact@v3
250
+ - uses : actions/upload-artifact@v4
251
251
with :
252
252
name : py-wheels
253
253
path : ./wheelhouse/*.whl
@@ -310,7 +310,7 @@ jobs:
310
310
run : |
311
311
echo "${{ steps.cargo-version.outputs.new }}" > tmp-new-cargo-ver
312
312
313
- - uses : " actions/upload-artifact@v3 "
313
+ - uses : actions/upload-artifact@v4
314
314
with :
315
315
path : " tmp-new-cargo-ver"
316
316
name : " new-cargo"
@@ -323,7 +323,7 @@ jobs:
323
323
CARGO_TOKEN : " ${{ secrets.CARGO_TOKEN }}"
324
324
325
325
- name : " Pull WASM Artifact"
326
- uses : " actions/download-artifact@v1 "
326
+ uses : actions/download-artifact@v4
327
327
if : " ${{ steps.npm-version.outputs.new == 'true' }}"
328
328
with :
329
329
name : wasm-pkg
@@ -340,7 +340,7 @@ jobs:
340
340
341
341
- name : " Pull Python Sdist Artifact"
342
342
if : " ${{ steps.cargo-version.outputs.new == 'true' }}"
343
- uses : " actions/download-artifact@v1 "
343
+ uses : actions/download-artifact@v4
344
344
with :
345
345
name : py-sdist
346
346
path : dist-py
@@ -364,7 +364,7 @@ jobs:
364
364
# alternatively, to publish when a GitHub Release is created, use the following rule:
365
365
if : github.event_name == 'release' && github.event.action == 'published'
366
366
steps :
367
- - uses : actions/download-artifact@v3
367
+ - uses : actions/download-artifact@v4
368
368
with :
369
369
name : py-wheels
370
370
path : dist
0 commit comments