@@ -22,15 +22,15 @@ jobs:
2222 matrix :
2323 python : ['3.9', '3.10', '3.11']
2424 steps :
25- - uses : actions/checkout@v3
25+ - uses : actions/checkout@v4
2626 with :
2727 fetch-depth : 0
2828
2929 - name : Set pkgs_dirs
3030 run : |
3131 echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
3232 - name : Cache conda packages
33- uses : actions/cache@v3
33+ uses : actions/cache@v4
3434 env :
3535 CACHE_NUMBER : 3 # Increase to reset cache
3636 with :
@@ -60,12 +60,12 @@ jobs:
6060 $CHANNELS \
6161 conda-recipe
6262 - name : Upload artifact
63- uses : actions/upload-artifact@v3
63+ uses : actions/upload-artifact@v4
6464 with :
6565 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
6666 path : /usr/share/miniconda/conda-bld/linux-64/${{ env.PACKAGE_NAME }}-*.tar.bz2
6767 - name : Upload wheels artifact
68- uses : actions/upload-artifact@v3
68+ uses : actions/upload-artifact@v4
6969 with :
7070 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
7171 path : ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl
@@ -79,18 +79,18 @@ jobs:
7979 env :
8080 conda-bld : C:\Miniconda\conda-bld\win-64\
8181 steps :
82- - uses : actions/checkout@v3
82+ - uses : actions/checkout@v4
8383 with :
8484 fetch-depth : 0
85- - uses : conda-incubator/setup-miniconda@v2
85+ - uses : conda-incubator/setup-miniconda@v3
8686 with :
8787 auto-activate-base : true
8888 conda-build-version : " *"
8989 activate-environment : true
9090 python-version : ${{ matrix.python }}
9191
9292 - name : Cache conda packages
93- uses : actions/cache@v3
93+ uses : actions/cache@v4
9494 env :
9595 CACHE_NUMBER : 3 # Increase to reset cache
9696 with :
@@ -109,12 +109,12 @@ jobs:
109109 OVERRIDE_INTEL_IPO : 1 # IPO requires more resources that GH actions VM provides
110110 run : conda build --no-test --python ${{ matrix.python }} -c intel -c conda-forge --override-channels conda-recipe
111111 - name : Upload artifact
112- uses : actions/upload-artifact@v3
112+ uses : actions/upload-artifact@v4
113113 with :
114114 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
115115 path : ${{ env.conda-bld }}${{ env.PACKAGE_NAME }}-*.tar.bz2
116116 - name : Upload wheels artifact
117- uses : actions/upload-artifact@v3
117+ uses : actions/upload-artifact@v4
118118 with :
119119 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
120120 path : ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.PACKAGE_NAME }}-*.whl
@@ -134,7 +134,7 @@ jobs:
134134
135135 steps :
136136 - name : Download artifact
137- uses : actions/download-artifact@v3
137+ uses : actions/download-artifact@v4
138138 with :
139139 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
140140 - name : Add conda to system path
@@ -161,7 +161,7 @@ jobs:
161161 run : |
162162 echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
163163 - name : Cache conda packages
164- uses : actions/cache@v3
164+ uses : actions/cache@v4
165165 env :
166166 CACHE_NUMBER : 3 # Increase to reset cache
167167 with :
@@ -219,10 +219,10 @@ jobs:
219219
220220 steps :
221221 - name : Download artifact
222- uses : actions/download-artifact@v3
222+ uses : actions/download-artifact@v4
223223 with :
224224 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
225- - uses : conda-incubator/setup-miniconda@v2
225+ - uses : conda-incubator/setup-miniconda@v3
226226 with :
227227 auto-update-conda : true
228228 conda-build-version : ' *'
@@ -262,7 +262,7 @@ jobs:
262262 shell : pwsh
263263 run : Get-Content -Path .\lockfile
264264 - name : Cache conda packages
265- uses : actions/cache@v3
265+ uses : actions/cache@v4
266266 env :
267267 CACHE_NUMBER : 3 # Increase to reset cache
268268 with :
@@ -326,12 +326,12 @@ jobs:
326326 python : ['3.9', '3.10', '3.11']
327327 steps :
328328 - name : Download conda artifact
329- uses : actions/download-artifact@v3
329+ uses : actions/download-artifact@v4
330330 with :
331331 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
332332
333333 - name : Download wheel artifact
334- uses : actions/download-artifact@v3
334+ uses : actions/download-artifact@v4
335335 with :
336336 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
337337
@@ -362,16 +362,16 @@ jobs:
362362 python : ['3.9', '3.10', '3.11']
363363 steps :
364364 - name : Download artifact
365- uses : actions/download-artifact@v3
365+ uses : actions/download-artifact@v4
366366 with :
367367 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
368368
369369 - name : Download wheel artifact
370- uses : actions/download-artifact@v3
370+ uses : actions/download-artifact@v4
371371 with :
372372 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
373373
374- - uses : conda-incubator/setup-miniconda@v2
374+ - uses : conda-incubator/setup-miniconda@v3
375375 with :
376376 auto-activate-base : true
377377 activate-environment : " "
@@ -411,11 +411,11 @@ jobs:
411411 # Needed to be able to run conda index
412412 run : conda install conda-build python=${{ matrix.python }}
413413 - name : Checkout dpctl repo
414- uses : actions/checkout@v3
414+ uses : actions/checkout@v4
415415 with :
416416 fetch-depth : 0
417417 - name : Download artifact
418- uses : actions/download-artifact@v3
418+ uses : actions/download-artifact@v4
419419 with :
420420 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
421421 - name : Add conda to system path
@@ -437,7 +437,7 @@ jobs:
437437 run : |
438438 echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
439439 - name : Cache conda packages
440- uses : actions/cache@v3
440+ uses : actions/cache@v4
441441 env :
442442 CACHE_NUMBER : 3 # Increase to reset cache
443443 with :
@@ -554,12 +554,12 @@ jobs:
554554 CHANNELS : -c intel -c conda-forge --override-channels
555555 steps :
556556 - name : Checkout dpctl repo
557- uses : actions/checkout@v3
557+ uses : actions/checkout@v4
558558 with :
559559 fetch-depth : 0
560560 - name : Cache array API tests
561561 id : cache-array-api-tests
562- uses : actions/cache@v3
562+ uses : actions/cache@v4
563563 env :
564564 ARRAY_CACHE : 3
565565 with :
@@ -578,7 +578,7 @@ jobs:
578578 git clone --recurse-submodules https://github.com/data-apis/array-api-tests array-api-tests
579579 cd array-api-tests
580580 - name : Download artifact
581- uses : actions/download-artifact@v3
581+ uses : actions/download-artifact@v4
582582 with :
583583 name : ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
584584 - name : Add conda to system path
@@ -605,7 +605,7 @@ jobs:
605605 run : |
606606 echo "pkgs_dirs: [~/.conda/pkgs]" >> ~/.condarc
607607 - name : Cache conda packages
608- uses : actions/cache@v3
608+ uses : actions/cache@v4
609609 env :
610610 CACHE_NUMBER : 3 # Increase to reset cache
611611 with :
@@ -672,7 +672,7 @@ jobs:
672672 run : echo "::notice ${{ env.MESSAGE }}"
673673 - name : Post result to PR
674674 if : ${{ github.event.pull_request && !github.event.pull_request.head.repo.fork }}
675- uses : mshick/add-pr-comment@v1
675+ uses : mshick/add-pr-comment@v2
676676 with :
677677 message : |
678678 ${{ env.MESSAGE }}
@@ -688,7 +688,7 @@ jobs:
688688 run :
689689 shell : bash -el {0}
690690 steps :
691- - uses : conda-incubator/setup-miniconda@v2
691+ - uses : conda-incubator/setup-miniconda@v3
692692 with :
693693 run-post : false
694694 channel-priority : " disabled"
@@ -699,7 +699,7 @@ jobs:
699699 run : conda install anaconda-client
700700
701701 - name : Checkout repo
702- uses : actions/checkout@v3
702+ uses : actions/checkout@v4
703703 with :
704704 repository : IntelPython/devops-tools
705705 fetch-depth : 0
0 commit comments