Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/dependencies-GH-414.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"backend": patch
"frontend": patch
"caravel": patch
---

chore(app): 🧹 Update Node.js from v24.12.0 to v24.16.0
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6
with:
node-version: 24.12.0 # or your desired version
node-version: 24.16.0 # or your desired version

- name: Install PNPM
run: npm install -g pnpm
Expand Down
4 changes: 2 additions & 2 deletions apps/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "24.10.4",
"@types/node": "24.12.4",
"@types/nodemailer": "7.0.4",
"@types/pg": "8.16.0",
"dotenv": "17.2.4",
Expand All @@ -38,6 +38,6 @@
"typescript": "5.9.3"
},
"volta": {
"node": "24.12.0"
"node": "24.16.0"
}
}
4 changes: 2 additions & 2 deletions apps/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 1️⃣ Builder stage
# FROM node:22.21.1-alpine@sha256:9632533eda8061fc1e9960cfb3f8762781c07a00ee7317f5dc0e13c05e15166f AS builder
FROM node:24.12.0-alpine@sha256:c921b97d4b74f51744057454b306b418cf693865e73b8100559189605f6955b8 AS builder
FROM node:24.16.0-alpine@sha256:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14 AS builder

# Set working directory
WORKDIR /app
Expand All @@ -17,7 +17,7 @@ RUN npm run build

# 2️⃣ Production stage
# FROM node:22.21.1-alpine@sha256:9632533eda8061fc1e9960cfb3f8762781c07a00ee7317f5dc0e13c05e15166f AS runner
FROM node:24.12.0-alpine@sha256:c921b97d4b74f51744057454b306b418cf693865e73b8100559189605f6955b8 AS runner
FROM node:24.16.0-alpine@sha256:2bdb65ed1dab192432bc31c95f94155ca5ad7fc1392fb7eb7526ab682fa5bf14 AS runner

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

Expand Down
Loading