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
2 changes: 1 addition & 1 deletion .github/workflows/agent-audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand All @@ -41,7 +41,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand All @@ -119,7 +119,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand Down
15 changes: 12 additions & 3 deletions .github/workflows/docs-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,17 @@ jobs:
# gate silently took whatever was on that branch at the time. A gate whose own version
# moves underneath it cannot tell you whether the code changed or the checker did.
#
# v0.1.0 exists now, and the release it comes from is the same one a Marketplace
# listing is made from.
- uses: melbinjp/docproof@v0.1.0
# **Bumped v0.1.0 -> v0.1.1, 2026-08-18.** The line under this used to say v0.1.0 was
# "the same one a Marketplace listing is made from", and that stopped being true the
# hour the listing went up: it was published from **v0.1.1**, because v0.1.0 carries a
# metadata name GitHub rejects. So this repository was pinned to a release that can no
# longer be listed, while claiming it was the listed one. A stale comment in the gate
# whose whole job is catching stale documentation.
#
# **Measured before bumping, both ways: no behaviour change here.** v0.1.0 and v0.1.1
# each report 112 claims checked and nothing contradicted on this tree. The seven
# commits between them are precision work on other corpora plus the name fix, so this
# is hygiene rather than a fix, and saying otherwise would be inventing a win.
- uses: melbinjp/docproof@v0.1.1
with:
show-skips: 'true'
2 changes: 1 addition & 1 deletion .github/workflows/pr-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
persist-credentials: false

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
fetch-depth: 0

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"
cache: "pip"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/review-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
persist-credentials: false

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python 3.12
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.12"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/checkout@v7

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: ${{ matrix.python-version }}

Expand Down
Loading