Skip to content

Commit 682df60

Browse files
authored
ci: use astral-sh/setup-uv instead (#923)
Fixes the warnings about "latest"
1 parent 29f9ca3 commit 682df60

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ jobs:
2727
- uses: actions/setup-python@v5
2828
with:
2929
python-version: "3.12"
30-
- uses: yezz123/setup-uv@v4
30+
- uses: astral-sh/setup-uv@v3
3131
- name: Install nox
32-
run: uv pip install --system nox
32+
run: uv tool install nox
3333
- uses: pre-commit/[email protected]
3434
with:
3535
extra_args: --all-files
3636
- name: Run PyLint
3737
run: nox -s pylint -- --output-format=github
3838
- name: Run nox generator
3939
run: |
40-
nox -s generate_schema -s readme
40+
nox -t gen
4141
git diff --exit-code
4242
4343
checks:
@@ -105,7 +105,7 @@ jobs:
105105
python-version: ${{ matrix.python-version }}
106106
allow-prereleases: true
107107

108-
- uses: yezz123/setup-uv@v4
108+
- uses: astral-sh/setup-uv@v3
109109
if:
110110
matrix.python-version != '3.7' && matrix.python-version != 'pypy-3.8'
111111
&& matrix.python-version != 'pypy-3.7'
@@ -168,7 +168,7 @@ jobs:
168168
with:
169169
python-version: ${{ matrix.python-version }}
170170

171-
- uses: yezz123/setup-uv@v4
171+
- uses: astral-sh/setup-uv@v3
172172

173173
# The min requirements are not compatible with some of the extra test
174174
# deps, so limit to just built-in deps.
@@ -332,7 +332,7 @@ jobs:
332332
with:
333333
fetch-depth: 0
334334

335-
- uses: yezz123/setup-uv@v4
335+
- uses: astral-sh/setup-uv@v3
336336

337337
- uses: wntrblm/[email protected]
338338
with:

0 commit comments

Comments
 (0)