Skip to content

Commit 54a81eb

Browse files
authored
ci: update gh actions uv setup to v7 (#6799)
1 parent d6bef64 commit 54a81eb

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/dev-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4646

4747
- name: Install uv
48-
uses: astral-sh/setup-uv@v6
48+
uses: astral-sh/setup-uv@v7
4949

5050
# patch pyproject.toml version to be of the form
5151
# X.Y.<Z+1>-dev{n-commits-since-last-tag}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020

2121
- name: 🐍 Setup uv
22-
uses: astral-sh/setup-uv@v6
22+
uses: astral-sh/setup-uv@v7
2323
with:
2424
enable-cache: true
2525
python-version: 3.12

.github/workflows/marimo-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
9090

9191
- name: Install uv
92-
uses: astral-sh/setup-uv@v6
92+
uses: astral-sh/setup-uv@v7
9393

9494
- name: Adapt pyproject.toml to build marimo-base
9595
run: uv run ./scripts/modify_pyproject_for_marimo_base.py

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 0
2626

2727
- name: 🐍 Setup uv
28-
uses: astral-sh/setup-uv@v6
28+
uses: astral-sh/setup-uv@v7
2929
with:
3030
enable-cache: true
3131
python-version: 3.12

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
6464

6565
- name: 🐍 Setup uv
66-
uses: astral-sh/setup-uv@v6
66+
uses: astral-sh/setup-uv@v7
6767
with:
6868
enable-cache: true
6969
python-version: 3.12

.github/workflows/release-marimo-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4343

4444
- name: Install uv
45-
uses: astral-sh/setup-uv@v6
45+
uses: astral-sh/setup-uv@v7
4646

4747
- name: Adapt pyproject.toml to build marimo-base
4848
run: uv run ./scripts/modify_pyproject_for_marimo_base.py

.github/workflows/test_cli.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110
- uses: actions/checkout@v4
111111

112112
- name: 🐍 Setup uv
113-
uses: astral-sh/setup-uv@v6
113+
uses: astral-sh/setup-uv@v7
114114
with:
115115
enable-cache: true
116116
python-version: ${{ matrix.python-version }}
@@ -148,7 +148,7 @@ jobs:
148148
- uses: actions/checkout@v4
149149

150150
- name: 🐍 Setup uv
151-
uses: astral-sh/setup-uv@v6
151+
uses: astral-sh/setup-uv@v7
152152
with:
153153
enable-cache: true
154154
python-version: 3.12

.github/workflows/test_no_build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
3434
steps:
3535
- uses: actions/checkout@v5
36-
- uses: astral-sh/setup-uv@v6
36+
- uses: astral-sh/setup-uv@v7
3737
- run: |
3838
uv build --wheel
3939
WHEEL=$(ls dist/*.whl)

docs/guides/deploying/scheduled.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
python-version: '3.11'
2828

2929
- name: Install uv
30-
uses: astral-sh/setup-uv@v6
30+
uses: astral-sh/setup-uv@v7
3131
with:
3232
version: "latest"
3333

0 commit comments

Comments
 (0)