Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(dependabot): bump actions/upload-artifact from 3 to 4 #37

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ jobs:

fi

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: asv-benchmark-results-${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
linux-teardown: "echo 'skip teardown'"

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: docs/docs/_build
2 changes: 1 addition & 1 deletion .github/workflows/reusable_build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
mv dist/*.whl dist/napari-0.0.1-py3-none-any.whl

- name: Upload wheel
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: wheel
path: dist/*.whl
2 changes: 1 addition & 1 deletion .github/workflows/reusable_pip_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Upload test artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test artifacts pip install
path: .pytest_tmp
6 changes: 3 additions & 3 deletions .github/workflows/reusable_run_tox_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,20 +173,20 @@ jobs:

- name: Upload test artifacts
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: test artifacts ${{ inputs.platform }} py ${{ inputs.python_version }} ${{ inputs.toxenv || inputs.qt_backend }}
path: .pytest_tmp

- name: Upload pytest timing reports as json
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: upload pytest timing reports as json
path: |
./report-*.json

- name: Upload coverage data
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: ${{ inputs.coverage == 'cov' }}
with:
name: coverage reports
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade_test_constraints.yml
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ jobs:
# END PYTHON DEPENDENCIES

- name: Upload constraints
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: constraints
path: |
Expand Down