From 651553f4f5b22bb2971db9e8bf980ab4093c1e1a Mon Sep 17 00:00:00 2001 From: Carlo1911 Date: Tue, 4 Aug 2026 18:20:11 -0500 Subject: [PATCH] ci: bump checkout/setup-python to v7 to drop Node 20 warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit v4/v5 still declare node20 in their action.yml even though runners now force node24 — v7 of both actions declares node24 natively. Co-Authored-By: Claude Sonnet 5 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b308226..90bf2ea 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,8 +10,8 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 + - uses: actions/checkout@v7 + - uses: actions/setup-python@v7 with: python-version: "3.12" - run: pip install -e ".[dev]"