Skip to content

Commit 55a3e6f

Browse files
Update GitHub Artifact Actions (uxlfoundation#2751)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 6f23c31 commit 55a3e6f

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -84,15 +84,15 @@ jobs:
8484
with:
8585
python-version: ${{ matrix.PYTHON_VERSION }}
8686
- name: Download oneDAL build artifact
87-
uses: actions/download-artifact@v5
87+
uses: actions/download-artifact@v6
8888
with:
8989
name: __release_lnx
9090
github-token: ${{ github.token }}
9191
repository: ${{ env.ONEDAL_REPO }}
9292
run-id: ${{ needs.onedal_nightly.outputs.run-id }}
9393
path: ./__release_lnx
9494
- name: Download oneDAL environment artifact
95-
uses: actions/download-artifact@v5
95+
uses: actions/download-artifact@v6
9696
with:
9797
name: oneDAL_env
9898
github-token: ${{ github.token }}
@@ -162,7 +162,7 @@ jobs:
162162
source .github/scripts/activate_components.sh ${{ steps.set-env.outputs.DPCFLAG }}
163163
bash .github/scripts/generate_coverage_reports.sh lnx${{ matrix.PYTHON_VERSION }}_${{ matrix.SKLEARN_VERSION }} ${{ steps.set-env.outputs.DPCFLAG }}
164164
- name: Archive coverage report
165-
uses: actions/upload-artifact@v4
165+
uses: actions/upload-artifact@v5
166166
with:
167167
name: coverage_lnx_Py${{ matrix.PYTHON_VERSION }}_${{ matrix.SKLEARN_VERSION }}
168168
path: |
@@ -199,15 +199,15 @@ jobs:
199199
with:
200200
python-version: ${{ matrix.PYTHON_VERSION }}
201201
- name: Download oneDAL build artifact
202-
uses: actions/download-artifact@v5
202+
uses: actions/download-artifact@v6
203203
with:
204204
name: __release_win
205205
github-token: ${{ github.token }}
206206
repository: ${{ env.ONEDAL_REPO }}
207207
run-id: ${{ needs.onedal_nightly.outputs.run-id }}
208208
path: ./__release_win
209209
- name: Download Intel BaseKit artifact
210-
uses: actions/download-artifact@v5
210+
uses: actions/download-artifact@v6
211211
with:
212212
name: intel_oneapi_basekit
213213
github-token: ${{ github.token }}
@@ -234,7 +234,7 @@ jobs:
234234
echo COVERAGE_RCFILE=%cd%\.coveragerc>> %GITHUB_ENV%
235235
- name: Download Intel OpenCL CPU Runtime artifact
236236
if: ${{ steps.set-env.outputs.DPCFLAG == '' }}
237-
uses: actions/download-artifact@v5
237+
uses: actions/download-artifact@v6
238238
with:
239239
name: opencl_rt_installer
240240
github-token: ${{ github.token }}
@@ -304,7 +304,7 @@ jobs:
304304
call .\.github\scripts\activate_components.bat ${{ steps.set-env.outputs.DPCFLAG }}
305305
bash .github/scripts/generate_coverage_reports.sh win${{ matrix.PYTHON_VERSION }}_${{ matrix.SKLEARN_VERSION }}
306306
- name: Archive coverage report
307-
uses: actions/upload-artifact@v4
307+
uses: actions/upload-artifact@v5
308308
with:
309309
name: coverage_win_Py${{ matrix.PYTHON_VERSION }}_${{ matrix.SKLEARN_VERSION }}
310310
path: |
@@ -337,15 +337,15 @@ jobs:
337337
**/dependencies-dev
338338
**/requirements-test.txt
339339
- name: Download oneDAL build artifact
340-
uses: actions/download-artifact@v5
340+
uses: actions/download-artifact@v6
341341
with:
342342
name: __release_lnx
343343
github-token: ${{ github.token }}
344344
repository: ${{ env.ONEDAL_REPO }}
345345
run-id: ${{ needs.onedal_nightly.outputs.run-id }}
346346
path: ./__release_lnx
347347
- name: Download oneDAL environment artifact
348-
uses: actions/download-artifact@v5
348+
uses: actions/download-artifact@v6
349349
with:
350350
name: oneDAL_env
351351
github-token: ${{ github.token }}
@@ -380,7 +380,7 @@ jobs:
380380
source .github/scripts/activate_components.sh ${{ steps.set-env.outputs.DPCFLAG }}
381381
python setup.py bdist_wheel
382382
- name: Archive sklearnex build
383-
uses: actions/upload-artifact@v4
383+
uses: actions/upload-artifact@v5
384384
with:
385385
name: sklearnex_build_${{ env.UXL_PYTHONVERSION }}
386386
path: |
@@ -412,15 +412,15 @@ jobs:
412412
**/dependencies-dev
413413
**/requirements-test.txt
414414
- name: Download oneDAL build artifact
415-
uses: actions/download-artifact@v5
415+
uses: actions/download-artifact@v6
416416
with:
417417
name: __release_lnx
418418
github-token: ${{ github.token }}
419419
repository: ${{ env.ONEDAL_REPO }}
420420
run-id: ${{ needs.onedal_nightly.outputs.run-id }}
421421
path: ./__release_lnx
422422
- name: Download oneDAL environment artifact
423-
uses: actions/download-artifact@v5
423+
uses: actions/download-artifact@v6
424424
with:
425425
name: oneDAL_env
426426
github-token: ${{ github.token }}
@@ -457,7 +457,7 @@ jobs:
457457
pip install $(python .ci/scripts/get_compatible_scipy_version.py ${{ env.UXL_SKLEARVERSION }}) pyyaml
458458
pip list
459459
- name: Download sklearnex wheel
460-
uses: actions/download-artifact@v5
460+
uses: actions/download-artifact@v6
461461
with:
462462
name: sklearnex_build_${{ env.UXL_PYTHONVERSION }}
463463
- name: Install PyTorch
@@ -483,7 +483,7 @@ jobs:
483483
source .github/scripts/activate_components.sh
484484
bash .github/scripts/generate_coverage_reports.sh uxl_lnx_${{ matrix.DEVICE }}
485485
- name: Archive coverage report
486-
uses: actions/upload-artifact@v4
486+
uses: actions/upload-artifact@v5
487487
with:
488488
name: coverage_uxl_lnx_${{ matrix.DEVICE }}
489489
path: |

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- name: Checkout Scikit-learn-intelex
3535
uses: actions/checkout@v5
3636
- name: Download artifacts
37-
uses: actions/download-artifact@v5
37+
uses: actions/download-artifact@v6
3838
with:
3939
path: coverage
4040
github-token: ${{ github.token }}

0 commit comments

Comments
 (0)