Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: pip install build
- name: Build wheel and sdist
run: python -m build
- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: artifact
path: |
Expand All @@ -29,7 +29,7 @@ jobs:
needs: build_wheel_and_sdist
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v7
with:
# unpacks default artifact into dist/
# if `name: artifact` is omitted, the action will create extra parent dir
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Generate coverage
run: tox run -e py310-coverage -- -s --cov-report=term

- uses: actions/upload-artifact@v5
- uses: actions/upload-artifact@v6
with:
name: coverage
path: ./htmlcov
Loading