From ddc3fc1f666ba3a2256e731ca1aa9377bd32c0ec Mon Sep 17 00:00:00 2001 From: Claude Date: Fri, 24 Jul 2026 19:59:31 +0000 Subject: [PATCH] ci: bump GitHub Actions Node.js version to 24 Node.js 20 is deprecated on GitHub Actions runners, which emit a warning on every run. Bump the setup-node version across the release, CI, and Pages workflows. Co-Authored-By: Claude Opus 4.8 Claude-Session: https://claude.ai/code/session_01Sf4pi9mQhKNKXDqgdJzZqY --- .github/workflows/ci.yml | 2 +- .github/workflows/deploy-pages.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6f3fc1..595a40b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: npm - name: Install diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 7eb1984..4dfece5 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -32,7 +32,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: npm # Install the whole workspace so the website can resolve @prescriptive/*. diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28c14dc..b0c4338 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 cache: npm registry-url: https://registry.npmjs.org