From a8b59ee296f43ed34b6a6ab0c97c61800e8a9d4a Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Thu, 3 Sep 2026 17:59:11 +0500 Subject: [PATCH] ci-lint: reuse `astral-sh/setup-uv` --- .github/workflows/ci-lint.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-lint.yaml b/.github/workflows/ci-lint.yaml index 166e662c0f..a8cde98dfa 100644 --- a/.github/workflows/ci-lint.yaml +++ b/.github/workflows/ci-lint.yaml @@ -24,10 +24,11 @@ jobs: with: python-version: ${{ env.MIN_BLENDER_PY_VERSION }} + - name: Action - setup uv + uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7.6.0 + - name: Install dependencies - run: | - curl -LsSf https://astral.sh/uv/install.sh | sh - cat requirements-tools.txt | xargs -L1 uv tool install + run: cat requirements-tools.txt | xargs -L1 uv tool install # black doesn't catch all syntax errors, so we check them explicitly. - name: Check syntax errors