This is an automated email from the ASF dual-hosted git repository.
xtsong pushed a commit to branch release-0.2
in repository https://gitbox.apache.org/repos/asf/flink-agents.git
The following commit(s) were added to refs/heads/release-0.2 by this push:
new 33ae7ccd [ci] Remove action astral-sh/setup-uv@v4 in ci due to legal
issue.
33ae7ccd is described below
commit 33ae7ccd8f62b360f1b9ef7a6ef34aefc0b79f2a
Author: WenjinXie <[email protected]>
AuthorDate: Tue Mar 24 17:44:03 2026 +0800
[ci] Remove action astral-sh/setup-uv@v4 in ci due to legal issue.
---
.github/workflows/ci.yml | 36 ++++++++++++++++++------------------
1 file changed, 18 insertions(+), 18 deletions(-)
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 96cd3edf..0889156e 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -42,9 +42,9 @@ jobs:
with:
python-version: 3.11
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Check code style
run: ./tools/lint.sh -c
@@ -58,9 +58,9 @@ jobs:
with:
python-version: '3.12'
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Run build-backend tests
working-directory: python
run: |
@@ -89,9 +89,9 @@ jobs:
with:
python-version: '3.11'
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install Python dependencies for MCP tests
run: |
cd python
@@ -125,9 +125,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Run Python Tests
env:
LOG_LEVEL: INFO
@@ -154,9 +154,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install flink-agents
run: bash tools/build.sh
- name: Install ollama
@@ -246,9 +246,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
- uses: astral-sh/setup-uv@v4
- with:
- version: "latest"
+ run: |
+ curl -LsSf https://astral.sh/uv/install.sh | sh
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Build flink-agents
run: bash tools/build.sh
- name: Install ollama