From 0d35b0943df04cbf451e6de7997d0069a27561e6 Mon Sep 17 00:00:00 2001 From: Amr Gaber Date: Fri, 22 May 2026 21:53:48 -0500 Subject: [PATCH] chore: align setup-uv pin with the rest of the repos (@v7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Align the `astral-sh/setup-uv` pin with the floating-major convention used everywhere else in the repo (`checkout@v6`, `setup-node@v6`, `pnpm/action-setup@v6`) and with the majority of already-bumped repos in this org, which sit on `@v7`. Both `@v7` and `@v8.1.0` run on Node 24 — this change is purely about consistency. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3784723..1077d1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v7 - run: uv sync - run: uv run ruff check . - run: uv run ruff format --check . @@ -23,6 +23,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v6 - - uses: astral-sh/setup-uv@v8.1.0 + - uses: astral-sh/setup-uv@v7 - run: uv sync - run: uv run pytest