Skip to content

Commit 9ce0f56

Browse files
vvillait88claude
andauthored
Move setup-uv to v9 (#65)
Found in a workspace-wide Actions audit: this was the last Python repo still on `astral-sh/setup-uv@v8.3.2` (3 sites: ci, security, publish). python-commerce already took v9.0.0 via Dependabot and runs it green. v9's only breaking change is the `prune-cache` default flipping to `false`, which changes Actions cache size rather than behaviour, and the uv cache here is managed by its own `actions/cache` step rather than setup-uv's. Everything else in this repo audited current. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
1 parent 46dae48 commit 9ce0f56

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 10
2121
steps:
2222
- uses: useblacksmith/checkout@v1
23-
- uses: astral-sh/setup-uv@v8.3.2
23+
- uses: astral-sh/setup-uv@v9.0.0
2424
- run: uv python install 3.12
2525
- uses: actions/cache@v6
2626
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v7
2121

22-
- uses: astral-sh/setup-uv@v8.3.2
22+
- uses: astral-sh/setup-uv@v9.0.0
2323

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

.github/workflows/security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
timeout-minutes: 5
3737
steps:
3838
- uses: useblacksmith/checkout@v1
39-
- uses: astral-sh/setup-uv@v8.3.2
39+
- uses: astral-sh/setup-uv@v9.0.0
4040
- uses: actions/setup-python@v7
4141
with:
4242
python-version: "3.13"

0 commit comments

Comments
 (0)