Skip to content

Commit c201727

Browse files
committed
ci(deps): bump astral-sh/setup-uv from v9.0.0 to v10.0.1
why: v10.0.0 is a deliberate breaking release one step after v9.0.0; upstream's own note is "Another breaking release, directly after v9.0.0 but we think the added security justifies that." It adds a `version: "latest-known"` selector that installs the newest uv release with a known checksum, and reads a Python version from a referenced `.tool-versions` file. v10.0.1 is a bug-fix patch only, tolerating a transient manifest timeout. The pin is the exact tag rather than a floating major on purpose: this action stopped publishing major tags after v7, so `astral-sh/setup-uv@v10` does not resolve. No inputs were added, removed or renamed across the span. v10 also changes the cache default: under `enable-cache: auto` it now disables caching for pull_request_target, workflow_run, release and tag-push triggers to close a cache-poisoning path (astral-sh/setup-uv#984). This repository does run setup-uv on release, but every one of its setup-uv steps sets `enable-cache: true` explicitly, which overrides the default - so caching behaviour here is unchanged. Releases: - https://github.com/astral-sh/setup-uv/releases/tag/v10.0.0 - https://github.com/astral-sh/setup-uv/releases/tag/v10.0.1
1 parent e7a46fa commit c201727

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Install uv
4242
if: env.PUBLISH == 'true'
43-
uses: astral-sh/setup-uv@v9.0.0
43+
uses: astral-sh/setup-uv@v10.0.1
4444
with:
4545
enable-cache: true
4646

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v7
1717

1818
- name: Install uv
19-
uses: astral-sh/setup-uv@v9.0.0
19+
uses: astral-sh/setup-uv@v10.0.1
2020
with:
2121
enable-cache: true
2222

@@ -102,7 +102,7 @@ jobs:
102102
- uses: actions/checkout@v7
103103

104104
- name: Install uv
105-
uses: astral-sh/setup-uv@v9.0.0
105+
uses: astral-sh/setup-uv@v10.0.1
106106
with:
107107
enable-cache: true
108108

0 commit comments

Comments
 (0)