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

Update actions/upload-artifact action to v4.6.0 #78

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/continuous_integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ jobs:
tar -czf dist.tar.gz dist
- name: Upload dist artifact
if: ${{ steps.create_dist.outcome == 'success' || steps.create_dist.outcome == 'failure' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
if-no-files-found: error
path: dist.tar.gz
Expand All @@ -454,7 +454,7 @@ jobs:
build-kit run-script install_wheels
- name: Upload wheels artifact
if: ${{ steps.create_wheels.outcome == 'success' || steps.create_wheels.outcome == 'failure' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
if-no-files-found: error
path: ${{ inputs.wheels_path }}
Expand Down Expand Up @@ -516,7 +516,7 @@ jobs:
run-script run_integration_tests
- name: Upload result and report as artifact
if: ${{ steps.run_integration_tests.outcome == 'success' || steps.run_integration_tests.outcome == 'failure' }}
uses: actions/upload-artifact@v4.4.3
uses: actions/upload-artifact@v4.6.0
with:
if-no-files-found: error
name: integration-test-report
Expand Down
Loading