From cd1ffdd7b55307e02c7808cf8cb869a82e669523 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Tue, 18 Nov 2025 21:21:48 -0800 Subject: [PATCH] chore: update node on GitHub actions No change to logic. This adds Node v24 to GitHub Actions CI. --- .github/workflows/main.yml | 1 + scripts/check-node-support.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3ed26651..1c77646e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,6 +13,7 @@ jobs: - 18 - 20 - 22 + - 24 os: - ubuntu-latest - macos-latest diff --git a/scripts/check-node-support.js b/scripts/check-node-support.js index 8ea89d80..8b3794c6 100755 --- a/scripts/check-node-support.js +++ b/scripts/check-node-support.js @@ -10,7 +10,7 @@ var shell = require('..'); // This is the authoritative list of supported node versions. var MIN_NODE_VERSION = 18; -var MAX_NODE_VERSION = 22; +var MAX_NODE_VERSION = 24; // Ideally this map should be empty, however we can pin node releases to // specific versions if necessary to workaround bugs. See