Skip to content

Commit f2ae254

Browse files
vvillait88claude
andauthored
Move CI to setup-uv v10.2.0 and uv 0.12.17 (#91)
## Summary Part of the 2026-09-21 dependency sweep. The `astral-sh/setup-uv` action moves from v10.1.0 to v10.2.0, and the uv `version:` input it installs moves from 0.12.16 to 0.12.17 in `ci.yml`, `publish.yml` and `security.yml`. Dependabot cannot see that input, so it moves by hand. The lockfile is already current (`uv lock --upgrade --dry-run` reports no changes), and OSV over `uv.lock` finds no issues. Worked with: Varun. Not done: no version bump or release, since nothing that ships in the package changed. ## Type of change - [ ] Bug fix (no breaking change) - [ ] New feature (no breaking change) - [ ] Breaking change (existing callers must update) - [x] Docs, tests, or internal maintenance only ## Public API Unchanged. ## Test plan CI on this PR is the test: every job installs uv through the bumped action and input. ## Checklist - [ ] Tests cover the new behavior, and the suite passes locally (not applicable: workflow pins only; CI is the gate) - [x] Lint, format, and type checks pass (run by CI on this PR) - [x] Docs and README examples updated if the public surface changed (no public surface change) - [x] No secrets, credentials, or personal data in the diff or the tests 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 2635627 commit f2ae254

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

‎.github/workflows/ci.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ jobs:
2020
timeout-minutes: 10
2121
steps:
2222
- uses: useblacksmith/checkout@v1
23-
- uses: astral-sh/setup-uv@v10.1.0
23+
- uses: astral-sh/setup-uv@v10.2.0
2424
with:
25-
version: "0.12.16"
25+
version: "0.12.17"
2626
- run: uv python install 3.12
2727
- uses: actions/cache@v6
2828
with:

‎.github/workflows/publish.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v7
2121

22-
- uses: astral-sh/setup-uv@v10.1.0
22+
- uses: astral-sh/setup-uv@v10.2.0
2323
with:
24-
version: "0.12.16"
24+
version: "0.12.17"
2525

2626
- name: Set version from tag
2727
run: sed -i "s/^version = .*/version = \"${GITHUB_REF_NAME#v}\"/" pyproject.toml

‎.github/workflows/security.yml‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
timeout-minutes: 5
3737
steps:
3838
- uses: useblacksmith/checkout@v1
39-
- uses: astral-sh/setup-uv@v10.1.0
39+
- uses: astral-sh/setup-uv@v10.2.0
4040
with:
41-
version: "0.12.16"
41+
version: "0.12.17"
4242
- uses: actions/setup-python@v7
4343
with:
4444
python-version: "3.13"

0 commit comments

Comments
 (0)