diff --git a/.gitea/workflows/code-check.yml b/.gitea/workflows/code-check.yml index 630171d..20b99ad 100644 --- a/.gitea/workflows/code-check.yml +++ b/.gitea/workflows/code-check.yml @@ -27,10 +27,11 @@ jobs: with: node-version: 20 - - name: Install uv - uses: https://github.com/astral-sh/setup-uv@v6 - with: - enable-cache: true + - name: Install uv manually + run: | + curl -LsSf https://astral.sh/uv/install.sh | sh + source $HOME/.local/bin/env + uv --version - name: Sync dependencies into venv run: uv sync --all-extras --dev diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml index b426fd1..ca44e8e 100644 --- a/.gitea/workflows/renovate.yml +++ b/.gitea/workflows/renovate.yml @@ -17,10 +17,11 @@ jobs: with: node-version: 20 - - name: Install uv - uses: https://github.com/astral-sh/setup-uv@v6 - with: - enable-cache: true + - name: Install uv manually + run: | + curl -LsSf https://astral.sh/uv/install.sh | sh + source $HOME/.local/bin/env + uv --version - name: Download external renovate config run: |