From 2c7c1a7a89d9b0db5feba3784662da90dbd5379b Mon Sep 17 00:00:00 2001 From: DarkLord Date: Wed, 11 Jun 2025 00:25:10 +0530 Subject: [PATCH] chore(ci): update uv install step for consistency across the gh actions. --- .github/workflows/check-lock.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-lock.yml b/.github/workflows/check-lock.yml index 805b0f3cc..ace011934 100644 --- a/.github/workflows/check-lock.yml +++ b/.github/workflows/check-lock.yml @@ -15,11 +15,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - + - name: Install uv - run: | - curl -LsSf https://astral.sh/uv/install.sh | sh - echo "$HOME/.cargo/bin" >> $GITHUB_PATH + uses: astral-sh/setup-uv@v3 + with: + enable-cache: true + version: 0.7.2 - name: Check uv.lock is up to date run: uv lock --check