From b7340ab72b4473f8f9d729bbeaac045300ac4635 Mon Sep 17 00:00:00 2001 From: "Billy D." Date: Fri, 13 Feb 2026 19:40:51 -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 b70962c..45d5b8c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -21,10 +21,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.12 @@ -46,10 +43,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.12