Skip to content

Commit ab9365f

Browse files
committed
πŸ‘· chore: use official setup-uv action
1 parent 1dffc89 commit ab9365f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

β€Ž.github/workflows/lint-and-fmt.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
npm install -g prettier
2626
2727
- name: Install uv
28-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
28+
uses: astral-sh/setup-uv@v1
2929

3030
- name: Install python
3131
uses: actions/setup-python@v5

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515

1616
- name: Install uv
17-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
17+
uses: astral-sh/setup-uv@v1
1818

1919
- name: Install python
2020
uses: actions/setup-python@v5

β€Ž.github/workflows/unit-test.ymlβ€Ž

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

2222
- name: Install uv
23-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
23+
uses: astral-sh/setup-uv@v1
2424

2525
- name: Install python
2626
uses: actions/setup-python@v5

0 commit comments

Comments
Β (0)