From acef0389af196d03dc53d87a7c58f3116b1a8f5d Mon Sep 17 00:00:00 2001 From: Dhruv Kumar Singh Date: Sun, 19 Jul 2026 04:38:43 +0530 Subject: [PATCH 1/2] Bump workflow actions off the deprecated Node runtime --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9a1ce2..199e28d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,8 +14,8 @@ jobs: python: ["3.12", "3.13"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 - - uses: astral-sh/setup-uv@v6 + - uses: actions/checkout@v7 + - uses: astral-sh/setup-uv@v8 with: python-version: ${{ matrix.python }} - run: uv sync diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7d66b8e..e6ae4e1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,15 +8,15 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: astral-sh/setup-uv@v6 + - uses: actions/checkout@v7 + - uses: astral-sh/setup-uv@v8 with: python-version: "3.13" - run: uv sync - run: uv run pytest -q -m "slow or not slow" - run: uv build - run: uvx twine check dist/* - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: dist path: dist/ @@ -30,7 +30,7 @@ jobs: permissions: id-token: write steps: - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: dist path: dist/ From 33d853a75297727d8b15b618623906131c6d9dcb Mon Sep 17 00:00:00 2001 From: Dhruv Kumar Singh Date: Sun, 19 Jul 2026 04:41:44 +0530 Subject: [PATCH 2/2] Pin setup-uv to an exact tag, v8 has no floating major --- .github/workflows/ci.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 199e28d..d6db6aa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v7 - - uses: astral-sh/setup-uv@v8 + - uses: astral-sh/setup-uv@v8.3.2 with: python-version: ${{ matrix.python }} - run: uv sync diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e6ae4e1..b55ba94 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - - uses: astral-sh/setup-uv@v8 + - uses: astral-sh/setup-uv@v8.3.2 with: python-version: "3.13" - run: uv sync