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
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
python3 -m pip install --upgrade pip build
python3 -m build
- name: Upload wheels
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: wheels
path: dist/*.whl
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
mypy --config-file pyproject.toml --junit-xml mypy-${{ matrix.python-version }}.xml .
- name: Upload Unit Test Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: MyPy Test Results (Python ${{ matrix.python-version }})
path: mypy-${{ matrix.python-version }}.xml
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Event File
path: ${{ github.event_path }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- run: mv test_reports/all.xml test_reports/pytest-${{ matrix.python-version }}.xml
- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: "Pytest Test Results (Python ${{ matrix.python-version }})"
path: test_reports/pytest-${{ matrix.python-version }}.xml
Expand All @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Upload
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: Event File
path: ${{ github.event_path }}
Loading