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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python 3.14
uses: actions/setup-python@v6
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
contents: read
steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python 3.14
uses: actions/setup-python@v6
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
Expand All @@ -109,7 +109,7 @@ jobs:

- name: Upload coverage artifact
if: always() && matrix.python-version == '3.14'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: test-reports-${{ matrix.python-version }}
path: |
Expand All @@ -120,7 +120,7 @@ jobs:

- name: Upload coverage to Codecov
if: matrix.python-version == '3.14' && env.CODECOV_TOKEN != ''
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v6
with:
files: coverage.xml
disable_search: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Check out code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python 3.14
uses: actions/setup-python@v6
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
run: echo "name=python-package-dists" >> "$GITHUB_OUTPUT"

- name: Upload package distributions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ steps.artifact-meta.outputs.name }}
path: dist/
Expand All @@ -72,7 +72,7 @@ jobs:

steps:
- name: Download package distributions
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ needs.build-and-verify.outputs.artifact-name }}
path: dist/
Expand Down