Skip to content

Commit b9ff7a2

Browse files
authored
Merge pull request #727 from staticdev/ci/pin-version-uv
Pin version of UV
2 parents 3bedfef + dbc1ed6 commit b9ff7a2

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

.github/workflows/release-dev.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ jobs:
2020

2121
- name: Install UV
2222
uses: astral-sh/setup-uv@v5
23+
with:
24+
version: ">=0.5.24"
2325

2426
- name: Install dependencies
2527
run: |
@@ -32,6 +34,5 @@ jobs:
3234
- name: Publish package on TestPyPI
3335
uses: pypa/gh-action-pypi-publish@release/v1
3436
with:
35-
user: __token__
3637
password: ${{ secrets.TEST_PYPI_TOKEN }}
3738
repository-url: https://test.pypi.org/legacy/

.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525

2626
- name: Install UV
2727
uses: astral-sh/setup-uv@v5
28+
with:
29+
version: ">=0.5.24"
2830

2931
- name: Install dependencies
3032
run: |

.github/workflows/tests.yml

+4
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ jobs:
4040

4141
- name: Install UV
4242
uses: astral-sh/setup-uv@v5
43+
with:
44+
version: ">=0.5.24"
4345

4446
- name: Install dependencies
4547
run: |
@@ -102,6 +104,8 @@ jobs:
102104

103105
- name: Install UV
104106
uses: astral-sh/setup-uv@v5
107+
with:
108+
version: ">=0.5.24"
105109

106110
- name: Download coverage data
107111
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)