From fe4b14c554a19958397046c19813df0372dae75c Mon Sep 17 00:00:00 2001 From: "Jonathan B. Coe" Date: Sat, 7 Feb 2026 23:38:59 +0000 Subject: [PATCH] Use astral-sh/setup-uv@v7 in GitHub actions --- .github/workflows/lint_python.yml | 4 ++-- .github/workflows/test_and_deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 7e6eb4d8f..1470294bb 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -11,8 +11,8 @@ jobs: name: Check Python linting runs-on: ubuntu-latest steps: - - name: Install the latest version of uv. - uses: astral-sh/setup-uv@v5 + - name: Install Python with the latest version of uv. + uses: astral-sh/setup-uv@v7 with: python-version: "3.13" diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index b30e56bb2..039ed39c7 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -16,8 +16,8 @@ jobs: os: [ubuntu-latest, macos-latest] fail-fast: false steps: - - name: Install the latest version of uv. - uses: astral-sh/setup-uv@v5 + - name: Install Python ${{ matrix.python-version }} with the latest version of uv. + uses: astral-sh/setup-uv@v7 with: python-version: ${{ matrix.python-version }} - name: Install non-python build dependencies