Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Upload coverage reports as artifacts
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-${{ matrix.os }}-py${{ matrix.python-version }}
path: |
Expand Down Expand Up @@ -136,7 +136,7 @@ jobs:

- name: Upload quality check results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: code-quality-results
path: |
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
run: twine check dist/*

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: dist-packages
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
make html

- name: Upload documentation artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v6
with:
name: documentation
path: docs/sphinx/_build/html/
Expand Down
Loading