Skip to content

Commit 7e39fc0

Browse files
chore(deps): update dependency node to v24.0.2
1 parent 26e5652 commit 7e39fc0

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/nextjs_bundle_analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Install Node.js
2727
uses: actions/setup-node@v3
2828
with:
29-
node-version: '24.x'
29+
node-version: '24.0.2'
3030

3131
# If pnpm is used, you need to switch the previous step with the following one. pnpm does not create a package-lock.json
3232
# so the step above will fail to pull dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- uses: actions/setup-node@v3
2727
with:
28-
node-version: 24.x
28+
node-version: 24.0.2
2929

3030
- name: Cache pnpm modules
3131
uses: actions/cache@v3

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Rebuild the source code only when needed
2-
FROM node:24-alpine AS builder
2+
FROM node:24.0.2-alpine AS builder
33

44
RUN apk add --no-cache libc6-compat git
55
RUN npm i -g pnpm
@@ -13,7 +13,7 @@ RUN npm run build
1313
# RUN npm run build
1414

1515
# Production image, copy all the files and run next
16-
FROM node:24-alpine AS runner
16+
FROM node:24.0.2-alpine AS runner
1717
WORKDIR /app
1818

1919
ENV NODE_ENV production

0 commit comments

Comments
 (0)