From 359e5820d21c646cde88482f2875d6a2d3d9a335 Mon Sep 17 00:00:00 2001 From: Colby McHenry Date: Thu, 21 May 2026 21:30:14 -0500 Subject: [PATCH] ci: bump checkout/setup-node to v6 (Node 24 runtime) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub deprecated Node.js 20 for actions: actions/checkout@v4 and actions/setup-node@v4 run on Node 20 and emit a deprecation warning. Node 24 becomes the forced default on 2026-06-02 and Node 20 is removed on 2026-09-16. Bump both to @v6 (Node 24). Config is unchanged — node-version: 22 and registry-url are both supported in v6. Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dcb20613..ff1a1577 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,8 +20,8 @@ jobs: release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - uses: actions/checkout@v6 + - uses: actions/setup-node@v6 with: node-version: 22 registry-url: https://registry.npmjs.org