From b34e8d2e1c92c266f514c69c21b2ff59d89eba88 Mon Sep 17 00:00:00 2001 From: "Billy D." Date: Fri, 13 Feb 2026 19:40:53 -0500 Subject: [PATCH] fix: replace astral-sh/setup-uv action with shell install The JS-based GitHub Action doesn't work on Gitea's act runner. Use curl installer + GITHUB_PATH instead. --- .gitea/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 8af2e40..532db7a 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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