File tree 2 files changed +9
-5
lines changed
Filter options
2 files changed +9
-5
lines changed
Original file line number Diff line number Diff line change 52
52
53
53
- name : Upload Artifact
54
54
if : always()
55
- uses : actions/upload-artifact@v3
55
+ uses : actions/upload-artifact@v4
56
56
with :
57
57
name : lint-log
58
58
path : |
84
84
85
85
- name : Download artifact
86
86
id : download-artifact
87
- uses : actions/download-artifact@v3
87
+ uses : actions/download-artifact@v4
88
88
with :
89
89
name : lint-log
90
90
Original file line number Diff line number Diff line change @@ -175,8 +175,9 @@ jobs:
175
175
run : bash build_tools/wheels/build_wheels.sh
176
176
177
177
- name : Store artifacts
178
- uses : actions/upload-artifact@v3
178
+ uses : actions/upload-artifact@v4
179
179
with :
180
+ name : cibw-wheels-cp${{ matrix.python }}-${{ matrix.platform_id }}
180
181
path : wheelhouse/*.whl
181
182
182
183
update-tracker :
@@ -215,8 +216,9 @@ jobs:
215
216
SKLEARN_SKIP_NETWORK_TESTS : 1
216
217
217
218
- name : Store artifacts
218
- uses : actions/upload-artifact@v3
219
+ uses : actions/upload-artifact@v4
219
220
with :
221
+ name : cibw-sdist
220
222
path : dist/*.tar.gz
221
223
222
224
# Upload the wheels and the source distribution
@@ -233,9 +235,11 @@ jobs:
233
235
uses : actions/checkout@v3
234
236
235
237
- name : Download artifacts
236
- uses : actions/download-artifact@v3
238
+ uses : actions/download-artifact@v4
237
239
with :
240
+ pattern : cibw-*
238
241
path : dist
242
+ merge-multiple : true
239
243
240
244
- name : Setup Python
241
245
uses : actions/setup-python@v5
You can’t perform that action at this time.
0 commit comments