Skip to content

Commit

Permalink
deps: bump actions/upload-artifact from 3 to 4 (#372)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Roberto Pastor Muela <[email protected]>
Co-authored-by: Jorge Martinez <[email protected]>
  • Loading branch information
3 people authored Dec 19, 2023
1 parent 3d32cd0 commit 6a14ba9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
ls -R && python -m build && python -m twine check dist/*
- name: "Upload distribution artifacts to GitHub artifacts"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.test-library-name }}-artifacts
path: ~/${{ env.test-library-name }}/dist/
Expand Down
2 changes: 1 addition & 1 deletion _release-pypi/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ runs:
python -m pip install --upgrade pip twine
- name: "Download the library artifacts from build-library step"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.library-name }}-artifacts
path: ${{ inputs.library-name }}-artifacts
Expand Down
2 changes: 1 addition & 1 deletion doc-deploy-dev/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ runs:
rm -rf version/dev && mkdir -p version/dev

- name: "Download the development documentation artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.doc-artifact-name }}
path: version/dev
Expand Down
2 changes: 1 addition & 1 deletion doc-deploy-index/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ runs:
Download the documentation artifact from the current workflow.
- name: "Download the development documentation artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.doc-artifact-name }}
path: ${{ inputs.doc-artifact-name }}
Expand Down
2 changes: 1 addition & 1 deletion doc-deploy-stable/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ runs:
rm -rf version/${{ env.VERSION }} && mkdir -p version/${{ env.VERSION }}
- name: "Download the stable documentation artifact"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ inputs.doc-artifact-name }}
path: version/${{ env.VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion release-github/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ runs:
directory containing the final artifacts to be published in GitHub.
- name: "Download all artifacts that got generated in the CI/CD"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: /tmp/artifacts

Expand Down

0 comments on commit 6a14ba9

Please sign in to comment.