Skip to content

Commit 0c01685

Browse files
authored
⬆️ Bump setup-uv action to 10.0.1 (#2077)
1 parent a6469ef commit 0c01685

9 files changed

Lines changed: 20 additions & 40 deletions

File tree

.github/workflows/build-docs.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,9 @@ jobs:
5656
with:
5757
python-version-file: ".python-version"
5858
- name: Setup uv
59-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
59+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
6060
with:
61-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
62-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
63-
version: "0.11.18"
61+
version: "latest-known"
6462
enable-cache: true
6563
cache-dependency-glob: |
6664
pyproject.toml

.github/workflows/bump-pre-commit-hooks.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,9 @@ jobs:
2828
with:
2929
python-version-file: ".python-version"
3030
- name: Setup uv
31-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
31+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
3232
with:
33-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
34-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
35-
version: "0.11.18"
33+
version: "latest-known"
3634
cache-dependency-glob: |
3735
pyproject.toml
3836
uv.lock

.github/workflows/create-draft-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,9 @@ jobs:
3131
with:
3232
python-version-file: ".python-version"
3333
- name: Install uv
34-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
34+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
3535
with:
36-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
37-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
38-
version: "0.11.18"
36+
version: "latest-known"
3937
- name: Extract release details
4038
id: release-details
4139
run: |

.github/workflows/deploy-docs.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ jobs:
3030
with:
3131
python-version-file: ".python-version"
3232
- name: Setup uv
33-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
33+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
3434
with:
35-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
36-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
37-
version: "0.11.18"
35+
version: "latest-known"
3836
enable-cache: false
3937
- name: Install GitHub Actions dependencies
4038
run: uv sync --locked --no-dev --group github-actions

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,9 @@ jobs:
4343
with:
4444
python-version-file: ".python-version"
4545
- name: Setup uv
46-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
46+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
4747
with:
48-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
49-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
50-
version: "0.11.18"
48+
version: "latest-known"
5149
cache-dependency-glob: |
5250
pyproject.toml
5351
uv.lock

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,9 @@ jobs:
4141
with:
4242
python-version-file: ".python-version"
4343
- name: Install uv
44-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
44+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
4545
with:
46-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
47-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
48-
version: "0.11.18"
46+
version: "latest-known"
4947
- name: Prepare release
5048
env:
5149
PREPARE_RELEASE_BUMP: ${{ inputs.bump }}

.github/workflows/publish.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,9 @@ jobs:
3333
with:
3434
python-version-file: ".python-version"
3535
- name: Install uv
36-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
36+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
3737
with:
38-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
39-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
40-
version: "0.11.18"
38+
version: "latest-known"
4139
enable-cache: false
4240
- name: Build distribution
4341
run: uv build

.github/workflows/smokeshow.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ jobs:
2121
with:
2222
python-version-file: ".python-version"
2323
- name: Setup uv
24-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
24+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
2525
with:
26-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
27-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
28-
version: "0.11.18"
26+
version: "latest-known"
2927
cache-dependency-glob: |
3028
pyproject.toml
3129
uv.lock

.github/workflows/test.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,9 @@ jobs:
5959
with:
6060
python-version: ${{ matrix.python-version }}
6161
- name: Setup uv
62-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
62+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
6363
with:
64-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
65-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
66-
version: "0.11.18"
64+
version: "latest-known"
6765
enable-cache: true
6866
cache-dependency-glob: |
6967
pyproject.toml
@@ -102,11 +100,9 @@ jobs:
102100
with:
103101
python-version-file: ".python-version"
104102
- name: Setup uv
105-
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
103+
uses: astral-sh/setup-uv@20cfd1bf945f4377ade1205e4dbc17946fc9a30d # v10.0.1
106104
with:
107-
# Before upgrading uv version, make sure astral-sh/setup-uv knows its checksum.
108-
# See: https://github.com/astral-sh/setup-uv/issues/851#issuecomment-4282017837
109-
version: "0.11.18"
105+
version: "latest-known"
110106
enable-cache: true
111107
cache-dependency-glob: |
112108
pyproject.toml

0 commit comments

Comments
 (0)