Skip to content

Commit

Permalink
chore: update upload-artifacts to v4 (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
germa89 authored Dec 20, 2023
1 parent f241d54 commit b47da2e
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion build-ci-wheels/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ runs:
CIBW_ARCHS: ${{ inputs.cibw-archs }}

- name: "Upload wheel"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheels
path: ./wheelhouse/*.whl
Expand Down
2 changes: 1 addition & 1 deletion build-library/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
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: ${{ inputs.library-name }}-artifacts
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion build-wheelhouse/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ runs:
dest: ${{ inputs.library-name }}-v${{ env.library_version }}-${{ env.wheelhouse_target }}-${{ inputs.operating-system }}-${{ inputs.python-version }}.zip

- name: "Upload the compressed wheelhouse"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.library-name }}-v${{ env.library_version }}-${{ env.wheelhouse_target }}-${{ inputs.operating-system }}-${{ inputs.python-version }}
path: ${{ inputs.library-name }}-v${{ env.library_version }}-${{ env.wheelhouse_target }}-${{ inputs.operating-system }}-${{ inputs.python-version }}.zip
Expand Down
2 changes: 1 addition & 1 deletion check-vulnerabilities/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ runs:
python dependency-check.py
- name: "Uploading safety and bandit results"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: vulnerability-results
Expand Down
6 changes: 3 additions & 3 deletions doc-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,21 +226,21 @@ runs:
fi
- name: "Upload HTML documentation artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation-html
path: doc/_build/html
retention-days: 7

- name: "Upload PDF documentation artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: documentation-pdf
path: doc/_build/latex/*.pdf
retention-days: 7

- name: "Upload JSON documentation artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: inputs.skip-json-build == 'false'
with:
name: documentation-json
Expand Down

0 comments on commit b47da2e

Please sign in to comment.