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

Bump actions/upload-artifact from 3 to 4 #1409

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/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
with:
doxyfile-path: "docs/Doxyfile.ini"
- name: Upload Doxygen Docs Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: doxygen_docs_pyglotaran
path: doxygen_docs_pyglotaran
2 changes: 1 addition & 1 deletion .github/workflows/full_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
pushd benchmark
asv run 0d41d63ca3ca33bb0b70e25fe76ab0c16f6d2e1d..main --machine gh_action
- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-results
path: benchmark/.asv/results
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ jobs:
run: |
pip freeze
- name: Upload Example Plots Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-plots
path: ${{ steps.example-run.outputs.plots-path }}

- name: Upload Example Results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: example-results
path: ~/pyglotaran_examples_results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr_benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
Path("benchmark/.asv/html/origin_pr_nr.txt").write_text(pr_nr)

- name: Upload PR html results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: benchmark-pr-html
path: benchmark/.asv/html
Loading