Skip to content
Closed
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/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Codespell
uses: codespell-project/actions-codespell@v2
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install the latest version of uv
Expand All @@ -49,7 +49,7 @@ jobs:
matrix:
package: ["wheel", "sdist"]
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: dist
path: dist/
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
DEPENDS: ${{ matrix.dependencies }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
needs: [test, test-package]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/download-artifact@v4
- uses: actions/download-artifact@v5
with:
name: dist
path: dist/
Expand All @@ -150,7 +150,7 @@ jobs:
check: ['specs', 'style']

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v6
- name: Show tox config
Expand Down
Loading