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
6 changes: 3 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
os.rename(f"report{os.sep}.coverage.${{ matrix.py }}", f"report{os.sep}.coverage.${{ matrix.py }}-{sys.platform}")
shell: python
- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
include-hidden-files: true
name: coverage-${{ matrix.os }}-${{ matrix.py }}
Expand Down Expand Up @@ -105,15 +105,15 @@ jobs:
hatch -v env create coverage
hatch run coverage:pip freeze
- name: Download coverage data
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
path: report
pattern: coverage-*
merge-multiple: true
- name: Combine and report coverage
run: hatch run coverage:run
- name: Upload HTML report
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: html-report
path: report/html
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Build package
run: uv build --python 3.13 --python-preference only-managed --sdist --wheel . --out-dir dist
- name: Store the distribution packages
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.dists-artifact-name }}
path: dist/*
Expand All @@ -38,7 +38,7 @@ jobs:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ env.dists-artifact-name }}
path: dist/
Expand Down