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/ai_pr_review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ jobs:
# durably even after the fork is deleted or branches removed.
# The previous workflow used `refs/pull/<N>/merge`, which is
# garbage-collected on closed PRs — this path replaces that.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: steps.pr.outputs.state != 'open' && steps.pr.outputs.is_fork == 'false'
with:
ref: refs/pull/${{ steps.pr.outputs.number }}/head
Expand All @@ -191,7 +191,7 @@ jobs:
# has not yet mirrored a freshly API-created PR's head
# (see .claude/commands/submit-pr.md:327-345). head_sha is
# guaranteed to exist on the head repo for an open PR.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: steps.pr.outputs.state == 'open' && steps.pr.outputs.is_fork == 'false'
with:
repository: ${{ steps.pr.outputs.head_repo_full_name }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install pandoc
# nbsphinx invokes pandoc to render notebook markdown cells.
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python 3.9
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/notebooks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
container: quay.io/pypa/manylinux_2_28_aarch64
artifact: wheels-linux-aarch64
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install system dependencies
run: dnf install -y openssl-devel perl-IPC-Cmd openblas-devel
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand All @@ -127,7 +127,7 @@ jobs:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest, ubuntu-24.04-arm]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
python-version: ['3.11', '3.13', '3.14']

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:
|| github.event.label.name == 'ready-for-ci'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
Loading