Skip to content

Commit 1918d9d

Browse files
committed
ci: pin astral-sh/setup-uv to v8.1.0
The action does not publish a `v8` major tag (only `v8.0.0` and `v8.1.0`), so `@v8` fails to resolve in GitHub Actions. The fix already lives on develop but never reached main before the 3.1.2 hotfix branched off; the v3.1.2 release workflow failed to set up its jobs. Pin to the exact version on both release.yml and python-package.yml. Signed-off-by: Fernando Macedo <fgmacedo@gmail.com>
1 parent 54f917b commit 1918d9d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Setup Graphviz
3131
uses: ts-graphviz/setup-graphviz@v2
3232
- name: Install uv
33-
uses: astral-sh/setup-uv@v8
33+
uses: astral-sh/setup-uv@v8.1.0
3434
with:
3535
enable-cache: true
3636
cache-suffix: "python${{ matrix.python-version }}"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: ts-graphviz/setup-graphviz@v2
2525

2626
- name: Install uv
27-
uses: astral-sh/setup-uv@v8
27+
uses: astral-sh/setup-uv@v8.1.0
2828
with:
2929
enable-cache: true
3030

0 commit comments

Comments
 (0)