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