Skip to content

Commit eefdbcd

Browse files
authored
Use astral-sh/setup-uv@v7 in GitHub actions (#82)
1 parent 7cbf5e0 commit eefdbcd

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/lint_python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
name: Check Python linting
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: Install the latest version of uv.
15-
uses: astral-sh/setup-uv@v5
14+
- name: Install Python with the latest version of uv.
15+
uses: astral-sh/setup-uv@v7
1616
with:
1717
python-version: "3.13"
1818

.github/workflows/test_and_deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
os: [ubuntu-latest, macos-latest]
1717
fail-fast: false
1818
steps:
19-
- name: Install the latest version of uv.
20-
uses: astral-sh/setup-uv@v5
19+
- name: Install Python ${{ matrix.python-version }} with the latest version of uv.
20+
uses: astral-sh/setup-uv@v7
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323
- name: Install non-python build dependencies

0 commit comments

Comments
 (0)