From b3251cfc152c927608f318866639a9cbba2007a4 Mon Sep 17 00:00:00 2001 From: "Billy D." Date: Fri, 13 Feb 2026 14:35:36 -0500 Subject: [PATCH] fix: replace setup-uv action with direct curl install --- .gitea/workflows/ci.yaml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index a993ee0..6edd6ce 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -18,10 +18,7 @@ jobs: uses: actions/checkout@v4 - name: Set up uv - uses: astral-sh/setup-uv@v7 - with: - version: "latest" - activate-environment: false + run: curl -LsSf https://astral.sh/uv/install.sh | sh && echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Set up Python run: uv python install 3.13 @@ -43,10 +40,7 @@ jobs: uses: actions/checkout@v4 - name: Set up uv - uses: astral-sh/setup-uv@v7 - with: - version: "latest" - activate-environment: false + run: curl -LsSf https://astral.sh/uv/install.sh | sh && echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Set up Python run: uv python install 3.13 @@ -69,10 +63,7 @@ jobs: fetch-depth: 0 - name: Set up uv - uses: astral-sh/setup-uv@v7 - with: - version: "latest" - activate-environment: false + run: curl -LsSf https://astral.sh/uv/install.sh | sh && echo "$HOME/.local/bin" >> $GITHUB_PATH - name: Set up Python run: uv python install 3.13