Skip to content

Commit 04a86d6

Browse files
authored
Merge pull request #1365 from IntelPython/dependabot/github_actions/actions/download-artifact-4
Bump actions/download-artifact from 3 to 4
2 parents bd15d02 + 162bd9b commit 04a86d6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/conda-package.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -79,13 +79,13 @@ jobs:
7979
run: conda mambabuild --no-test --python ${{ matrix.python }} conda-recipe
8080

8181
- name: Upload artifact
82-
uses: actions/upload-artifact@v3
82+
uses: actions/upload-artifact@v4
8383
with:
8484
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
8585
path: ${{ env.CONDA_BLD }}${{ env.PACKAGE_NAME }}-*.tar.bz2
8686

8787
- name: Upload wheels artifact
88-
uses: actions/upload-artifact@v3
88+
uses: actions/upload-artifact@v4
8989
with:
9090
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
9191
path: ${{ env.WHEELS_OUTPUT_FOLDER }}${{ env.WHEELS_NAME }}-*.whl
@@ -140,7 +140,7 @@ jobs:
140140
echo "EXAMPLES_PATH=$CONDA_PREFIX/${{ runner.os == 'Linux' && format('lib/python{0}',matrix.python) || 'Lib' }}/site-packages/numba_dpex/examples/" | tr "\\" "/" >> $GITHUB_ENV
141141
142142
- name: Download artifact
143-
uses: actions/download-artifact@v3
143+
uses: actions/download-artifact@v4
144144
with:
145145
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
146146
path: ${{ env.PKG_PATH_IN_CHANNEL }}
@@ -273,12 +273,12 @@ jobs:
273273

274274
steps:
275275
- name: Download artifact
276-
uses: actions/download-artifact@v3
276+
uses: actions/download-artifact@v4
277277
with:
278278
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Python ${{ matrix.python }}
279279

280280
- name: Download wheels artifact
281-
uses: actions/download-artifact@v3
281+
uses: actions/download-artifact@v4
282282
with:
283283
name: ${{ env.PACKAGE_NAME }} ${{ runner.os }} Wheels Python ${{ matrix.python }}
284284

0 commit comments

Comments
 (0)