From e4927557a52f8c9820e53983c582ac47f5144200 Mon Sep 17 00:00:00 2001 From: Tom Date: Fri, 26 Jun 2026 23:41:13 -0400 Subject: [PATCH] Bump CI actions to Node 24 runtimes actions/checkout@v4 to v5 and actions/setup-python@v5 to v6, which run on Node 24, clearing the Node.js 20 deprecation runner warnings. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b1cb4f9..624433f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,9 +26,9 @@ jobs: matrix: python: ['3.11', '3.12', '3.13'] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - - uses: actions/setup-python@v5 + - uses: actions/setup-python@v6 with: python-version: ${{ matrix.python }} cache: pip @@ -56,7 +56,7 @@ jobs: permissions: contents: write # create tags and releases steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 with: fetch-depth: 0 # need full tag history to compute the next version