Skip to content

Commit e223cb9

Browse files
chore(app): 🧹 Update Node.js from v24.12.0 to v24.14.1
1 parent 471e2d5 commit e223cb9

7 files changed

Lines changed: 109 additions & 94 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Setup Node.js
2323
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
2424
with:
25-
node-version: 24.12.0 # or your desired version
25+
node-version: 24.14.1 # or your desired version
2626

2727
- name: Install PNPM
2828
run: npm install -g pnpm

apps/backend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"zod": "^4.3.6"
3030
},
3131
"devDependencies": {
32-
"@types/node": "24.10.4",
32+
"@types/node": "24.12.2",
3333
"@types/nodemailer": "7.0.4",
3434
"@types/pg": "8.16.0",
3535
"dotenv": "17.2.4",
@@ -38,6 +38,6 @@
3838
"typescript": "5.9.3"
3939
},
4040
"volta": {
41-
"node": "24.12.0"
41+
"node": "24.14.1"
4242
}
4343
}

apps/frontend/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 1️⃣ Builder stage
22
# FROM node:22.21.1-alpine@sha256:9632533eda8061fc1e9960cfb3f8762781c07a00ee7317f5dc0e13c05e15166f AS builder
3-
FROM node:24.12.0-alpine@sha256:c921b97d4b74f51744057454b306b418cf693865e73b8100559189605f6955b8 AS builder
3+
FROM node:24.14.1-alpine@sha256:01743339035a5c3c11a373cd7c83aeab6ed1457b55da6a69e014a95ac4e4700b AS builder
44

55
# Set working directory
66
WORKDIR /app
@@ -17,7 +17,7 @@ RUN npm run build
1717

1818
# 2️⃣ Production stage
1919
# FROM node:22.21.1-alpine@sha256:9632533eda8061fc1e9960cfb3f8762781c07a00ee7317f5dc0e13c05e15166f AS runner
20-
FROM node:24.12.0-alpine@sha256:c921b97d4b74f51744057454b306b418cf693865e73b8100559189605f6955b8 AS runner
20+
FROM node:24.14.1-alpine@sha256:01743339035a5c3c11a373cd7c83aeab6ed1457b55da6a69e014a95ac4e4700b AS runner
2121

2222
RUN curl -sfS https://dotenvx.sh/install.sh | sh -s -- -b /usr/local/bin
2323

0 commit comments

Comments
 (0)