Skip to content
Open
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/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
outputs:
prepared: ${{ steps.validate.outputs.prepared }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Validate commit message
id: validate
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
app-id: ${{ vars.RELEASE_BOT_APP_ID }}
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0
ref: main
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
if: needs.check-preparation.outputs.prepared == 'true'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v6
with:
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: actions/setup-python@v6
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
lint:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v6
with:
Expand All @@ -47,7 +47,7 @@ jobs:
matrix:
python-version: ['3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v6
with:
Expand All @@ -71,7 +71,7 @@ jobs:
# Only run on main branch or when called by release workflow (not on PRs)
if: github.event_name != 'pull_request'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v6
with:
Expand All @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-24.04
needs: lint
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: astral-sh/setup-uv@v6
with:
Expand Down