Skip to content

Commit 21ba6ab

Browse files
committed
Fix uv path
1 parent 117a083 commit 21ba6ab

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/linter.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,11 @@ jobs:
2323
python-version-file: ".python-version"
2424

2525
- name: Install uv
26-
uses: astral-sh/setup-uv@v1
26+
uses: astral-sh/setup-uv@v6
27+
28+
- name: Add uv to PATH
29+
run: |
30+
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
2731
2832
- name: Install dependencies
2933
run: uv sync --dev

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ jobs:
3030
python-version: ${{ matrix.python-version }}
3131

3232
- name: Install uv
33-
run: |
34-
curl -LsSf https://astral.sh/uv/install.sh | sh
33+
uses: astral-sh/setup-uv@v6
3534

3635
- name: Add uv to PATH
3736
run: |

.github/workflows/update-a2a-types.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
python-version: "3.10"
2323

2424
- name: Install uv
25-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
25+
uses: astral-sh/setup-uv@v6
2626

2727
- name: Configure uv shell
2828
run: echo "$HOME/.cargo/bin" >> $GITHUB_PATH

0 commit comments

Comments
 (0)