Skip to content

Commit 093e22d

Browse files
committed
fix
1 parent 0582499 commit 093e22d

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/lint-docs.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515
- name: Set up Python ${{ matrix.python-version }}
1616
uses: actions/setup-python@v4
1717
with:
1818
python-version: "3.13"
19-
- name: Install UV
20-
uses: yezz123/setup-uv@v4
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@v6
2121
- name: Install dependencies
2222
run: |
23-
uv sync --group docs
23+
UV_PROJECT_ENVIRONMENT=/usr/local uv sync --locked --group docs
2424
- name: Build docs with MkDocs
2525
run: |
2626
make docs
2727
- name: Check Markdown links
28-
uses: gaurav-nelson/github-action-markdown-link-check@v1
28+
uses: tcort/github-action-markdown-link-check@v1

.github/workflows/release-drafter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ jobs:
1414
uses: actions/setup-python@v4
1515
with:
1616
python-version: "3.13"
17-
- name: Install UV
18-
uses: yezz123/setup-uv@v4
17+
- name: Install uv
18+
uses: astral-sh/setup-uv@v6
1919
- name: Get version from pyproject.toml
2020
run: echo "VERSION=$(uv version --short)" >> $GITHUB_ENV
2121
- uses: release-drafter/release-drafter@v5

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
uses: actions/setup-python@v4
1919
with:
2020
python-version: "3.13"
21-
- name: Install UV
22-
uses: yezz123/setup-uv@v4
21+
- name: Install uv
22+
uses: astral-sh/setup-uv@v6
2323
- name: Install dependencies
2424
run: uv sync
2525
- name: Build distributions

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ jobs:
2121
with:
2222
python-version: ${{ matrix.python-version }}
2323

24-
- name: Install UV
25-
uses: yezz123/setup-uv@v4
24+
- name: Install uv
25+
uses: astral-sh/setup-uv@v6
2626

2727
- name: Install dependencies
2828
run: |

0 commit comments

Comments
 (0)