Skip to content

Commit 7190d1d

Browse files
authored
Merge pull request #2364 from cclauss/uv-v0.6.0
Upgrade to uv>=0.6.0 and enable-cache
2 parents a255775 + 37949c2 commit 7190d1d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
25-
cache: "pip"
2625

2726
- name: Install UV
2827
uses: astral-sh/setup-uv@v5
2928
with:
30-
version: ">=0.5.24"
29+
enable-cache: true
30+
version: ">=0.6.0"
3131

3232
- name: Install dependencies
3333
run: uv sync --all-extras --frozen

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ jobs:
2222
uses: actions/setup-python@v5
2323
with:
2424
python-version: ${{ matrix.python-version }}
25-
cache: "pip"
2625

2726
- name: Install UV
2827
uses: astral-sh/setup-uv@v5
2928
with:
30-
version: ">=0.5.24"
29+
enable-cache: true
30+
version: ">=0.6.0"
3131

3232
- name: Install dependencies
3333
run: uv sync --all-extras --frozen

.github/workflows/release-dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Install UV
2626
uses: astral-sh/setup-uv@v5
2727
with:
28-
version: ">=0.5.24"
28+
version: ">=0.6.0"
2929

3030
- name: Build package
3131
run: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install UV
2929
uses: astral-sh/setup-uv@v5
3030
with:
31-
version: ">=0.5.24"
31+
version: ">=0.6.0"
3232

3333
- name: Install dependencies
3434
run: |

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
30-
cache: "pip"
3130

3231
- name: Install UV
3332
uses: astral-sh/setup-uv@v5
3433
with:
35-
version: ">=0.5.24"
34+
enable-cache: true
35+
version: ">=0.6.0"
3636

3737
- name: Install dependencies
3838
run: uv sync --all-extras --frozen

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /isort
44
COPY pyproject.toml uv.lock /isort/
55

66
# Install uv
7-
COPY --from=ghcr.io/astral-sh/uv:0.5.24 /uv /uvx /bin/
7+
COPY --from=ghcr.io/astral-sh/uv:0.6.0 /uv /uvx /bin/
88

99
# Setup as minimal a stub project as possible, simply to allow caching base dependencies
1010
# between builds.

0 commit comments

Comments
 (0)