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.1.3 to 4.0.0 #395

Closed
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ jobs:
)" >> $GITHUB_OUTPUT
cd dist && sha256sum * >> $GITHUB_STEP_SUMMARY
- name: Upload build artifact
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: Build
# by default build puts sdist and wheel here
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
shell: bash
- name: Upload coverage
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: Coverage
path: "*coverage*${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.python }}*"
Expand Down Expand Up @@ -313,7 +313,7 @@ jobs:
>> $GITHUB_STEP_SUMMARY
- name: Upload report
if: always()
uses: actions/upload-artifact@v3.1.3
uses: actions/upload-artifact@v4.0.0
with:
name: Report
path: htmlcov/
Expand Down
Loading