From 8b538d1ef9edd6a1b8d0569dc5bdd6db6331c97c Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Wed, 6 Aug 2025 22:57:18 -0700 Subject: [PATCH] fix: use uv tool install for ruff instead of uv pip install - uv tool install is the correct way to install CLI tools like ruff - uv pip install --system is for Python packages, not tools --- .github/workflows/build-reusable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 5085642..f9e450d 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -26,9 +26,9 @@ jobs: - name: Install uv uses: astral-sh/setup-uv@v4 - - name: Install dependencies with ruff + - name: Install ruff run: | - uv pip install --system ruff==0.12.7 + uv tool install ruff==0.12.7 - name: Run ruff check run: |