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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: lint
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.12"
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# APIs accept them, and the bash pytest step reads this verbatim.
WIRELOG_PREFIX: ${{ github.workspace }}/wirelog-install
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build_and_publish:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
test_against_main:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
os: [ubuntu-24.04, macos-15, windows-2025-vs2026]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
os: [ubuntu-24.04, macos-15, windows-2025-vs2026]
python: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down Expand Up @@ -206,7 +206,7 @@ jobs:
build_sdist:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
id-token: write # PyPI trusted publishing (OIDC)
attestations: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
os: [ubuntu-24.04, macos-15, windows-2025-vs2026]

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
os: [ubuntu-24.04, macos-15, windows-2025-vs2026]
python: ["3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-python@v6
with:
Expand Down
4 changes: 3 additions & 1 deletion tests/test_ci_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,11 @@ def test_ci_uses_node24_actions():
text = _workflow_text()
assert "actions/checkout@v4" not in text
assert "actions/checkout@v5" not in text
assert "actions/checkout@v6" not in text
assert "actions/setup-python@v5" not in text
assert "actions/cache@v4" not in text
assert "ilammy/msvc-dev-cmd" not in text
assert "actions/checkout@v6" in text
assert "actions/checkout@v7" in text
assert "actions/setup-python@v6" in text
assert "actions/cache@v5" in text

Expand All @@ -55,6 +56,7 @@ def test_all_workflows_use_node24_core_actions():
text = path.read_text(encoding="utf-8")
assert "actions/checkout@v4" not in text, path
assert "actions/checkout@v5" not in text, path
assert "actions/checkout@v6" not in text, path
assert "actions/setup-python@v5" not in text, path
assert "actions/cache@v4" not in text, path
assert "actions/upload-artifact@v4" not in text, path
Expand Down
3 changes: 2 additions & 1 deletion tests/test_wheels_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,9 @@ def test_wheels_workflow_uses_node24_actions():
text = _read(".github/workflows/wheels.yml")
assert "actions/checkout@v4" not in text
assert "actions/checkout@v5" not in text
assert "actions/checkout@v6" not in text
assert "actions/setup-python@v5" not in text
assert "actions/checkout@v6" in text
assert "actions/checkout@v7" in text
assert "actions/setup-python@v6" in text


Expand Down