From a6679a4ce166f3ca1880d077b3de33bbd1d2ef25 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Wed, 15 Apr 2026 02:18:44 +0000 Subject: [PATCH] chore(deps): update dependency node to v24.0.2 --- .github/workflows/nextjs_bundle_analysis.yml | 2 +- .github/workflows/release.yml | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nextjs_bundle_analysis.yml b/.github/workflows/nextjs_bundle_analysis.yml index 7818be62b..9e9333205 100644 --- a/.github/workflows/nextjs_bundle_analysis.yml +++ b/.github/workflows/nextjs_bundle_analysis.yml @@ -26,7 +26,7 @@ jobs: - name: Install Node.js uses: actions/setup-node@v6 with: - node-version: '24.x' + node-version: '24.0.2' # If pnpm is used, you need to switch the previous step with the following one. pnpm does not create a package-lock.json # so the step above will fail to pull dependencies diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d2353a1bf..b4ca6becf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/setup-node@v6 with: - node-version: 24.x + node-version: 24.0.2 - name: Cache pnpm modules uses: actions/cache@v5 diff --git a/Dockerfile b/Dockerfile index 96a76fe33..23eee89c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Rebuild the source code only when needed -FROM node:24-alpine AS builder +FROM node:24.0.2-alpine AS builder RUN apk add --no-cache libc6-compat git RUN npm i -g pnpm @@ -13,7 +13,7 @@ RUN npm run build # RUN npm run build # Production image, copy all the files and run next -FROM node:24-alpine AS runner +FROM node:24.0.2-alpine AS runner WORKDIR /app ENV NODE_ENV production