Skip to content

Commit

Permalink
Merge pull request #1793 from QCDIS/1736-actions-artifacts-v3-will-be…
Browse files Browse the repository at this point in the history
…-deprecated-on-january-30th-2025

bump actions/download-artifact version
  • Loading branch information
gpelouze authored Jan 25, 2025
2 parents 096a288 + 1d5a6d0 commit 2def0f7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
swap-storage: true

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.wheel_artifact_name }}
path: docker/${{ inputs.docker_folder }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/collect-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
pytest --collect-only -q | grep 'tests/' | jq -R . | jq -s . > test_list.json
- name: Upload pytest output as artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test_list
path: test_list.json
2 changes: 1 addition & 1 deletion .github/workflows/make-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
run: make release

- name: 'Upload wheel artifact'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: jupyterlab_vre
path: dist/jupyterlab_vre-0.1.0-py3-none-any.whl
2 changes: 1 addition & 1 deletion .github/workflows/make.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
uses: actions/checkout@v4

- name: Download pytest output artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: test_list
path: ./
Expand Down

0 comments on commit 2def0f7

Please sign in to comment.