From f3d43d7ec89667d25b6b76cd69093268277726ad Mon Sep 17 00:00:00 2001 From: William French Date: Fri, 27 Mar 2026 12:09:00 -0700 Subject: [PATCH 1/2] Upgrade Node.js to 24 in actions This is a follow-on to #1232. It does these things: * Moves node-version to 24.x in release.yml. * Moves actions/setup-node to v4. --- .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 53c324e8..64392a3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -49,9 +49,9 @@ jobs: restore-keys: | ${{ runner.os }}-node - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: - node-version: '22.x' + node-version: '24.x' - run: npm i From 43a5dea029149b878a2954701c041929883b61b4 Mon Sep 17 00:00:00 2001 From: William French Date: Fri, 27 Mar 2026 12:11:17 -0700 Subject: [PATCH 2/2] Update Node.js version specification to 24.x It needed the .x part so we don't have to worry about incremental updates. --- .github/workflows/playwright.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index d4e1054a..1cc56c9b 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -64,7 +64,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '24' # Updated to Node.js 24 + node-version: '24.x' - name: Cache npm dependencies uses: actions/cache@v4 @@ -141,7 +141,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '24' # Updated to Node.js 24 + node-version: '24.x' - name: Cache npm dependencies uses: actions/cache@v4