From e33cd3ebf99ded63520c283afb4bc7be9d7a66f6 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 00:11:56 +0000 Subject: [PATCH] chore(deps): update node.js to v24 --- .github/workflows/CI.yml | 4 ++-- .nvmrc | 2 +- dev/docker/ci/alpine.dockerfile | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cc44152a..6b39c371 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -216,7 +216,7 @@ jobs: - name: Setup Node 20 uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 24 - name: Smoke Test Modern Bundle if: ${{ !contains(github.event.head_commit.message, '[skip test]') }} @@ -235,7 +235,7 @@ jobs: if: ${{ !contains(matrix.os, 'macos-14') && !contains(matrix.os, 'macos-15') }} uses: actions/setup-node@v4 with: - node-version: 12 + node-version: 24 - name: Smoke Test Legacy Bundle run: | node ./dist/legacy/setup-cpp.js --help diff --git a/.nvmrc b/.nvmrc index fc37597b..0a492611 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -22.17.0 +24.11.0 diff --git a/dev/docker/ci/alpine.dockerfile b/dev/docker/ci/alpine.dockerfile index f58d0a3a..bc71f486 100644 --- a/dev/docker/ci/alpine.dockerfile +++ b/dev/docker/ci/alpine.dockerfile @@ -1,4 +1,4 @@ -ARG BASE_VERSION=22-alpine3.21 +ARG BASE_VERSION=24-alpine3.21 #### Base Image with Node.js FROM --platform=$BUILDPLATFORM node:${BASE_VERSION} AS alpine-nodejs