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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- "3.12"
- "3.11"
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
Expand All @@ -37,7 +37,7 @@ jobs:
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
Expand All @@ -54,7 +54,7 @@ jobs:
# Run on codspeed for walltime and ubuntu for instrumenentation
runner: [ ubuntu-latest, codspeed-macro ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand All @@ -67,7 +67,7 @@ jobs:
- run: |
export UV_PROJECT_ENVIRONMENT="${pythonLocation}"
uv sync --extra test --locked
- uses: CodSpeedHQ/action@v4.3.1
- uses: CodSpeedHQ/action@v4.4.1
with:
token: ${{ secrets.CODSPEED_TOKEN }}
# allow updating snapshots due to indeterministic benchmarks
Expand All @@ -77,7 +77,7 @@ jobs:
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
core.setOutput('head_ref', pullRequest.head.ref);

- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
# Checkout the PR head ref
ref: ${{ steps.pr-details.outputs.head_ref }}
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
outputs:
version: ${{ steps.bump.outputs.version }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
Expand All @@ -59,11 +59,11 @@ jobs:
needs: [bump]
if: ${{ always() }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'success' }}
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'skipped' }}
- uses: PyO3/maturin-action@v1.49.4
with:
Expand All @@ -83,11 +83,11 @@ jobs:
needs: [bump]
if: ${{ always() }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'success' }}
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'skipped' }}
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
Expand All @@ -108,11 +108,11 @@ jobs:
needs: [bump]
if: ${{ always() }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'success' }}
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'skipped' }}
- uses: PyO3/maturin-action@v1.49.4
with:
Expand All @@ -130,11 +130,11 @@ jobs:
needs: [bump]
if: ${{ always() }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'success' }}
with:
ref: version-${{ needs.bump.outputs.version }}
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ needs.bump.result == 'skipped' }}
- uses: PyO3/maturin-action@v1.49.4
with:
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
permissions: write-all
needs: [release, bump]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: version-${{ needs.bump.outputs.version }}
- run: |
Expand Down
Loading