Skip to content
Draft
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
${{ github.workspace }}/e2e/node_modules
~/.cache/ms-playwright/
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0
NODE_VERSION: 22.18.0
NODE_VERSION: 24.14.1
# Disable v8-compile-cache to prevent intermittent V8 deserializer crashes
# when multiple parallel Nx workers race to read/write shared bytecode cache
# files. The cache lives in /tmp and is discarded after each run anyway,
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
- name: Define Node test matrix
id: node_matrix
run: |
echo 'matrix=["22.18.0"]' >> $GITHUB_OUTPUT
echo 'matrix=["24.14.1"]' >> $GITHUB_OUTPUT

- name: Set up Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ env:
${{ github.workspace }}/e2e/node_modules
~/.cache/ms-playwright/
NX_REJECT_UNKNOWN_LOCAL_CACHE: 0
NODE_VERSION: 22.18.0
NODE_VERSION: 24.14.1

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
# Build context: extracted `npm pack` output from ghost/core

ARG NODE_VERSION=22.18.0
ARG NODE_VERSION=24.14.1

# ---- Core: server + production deps ----
FROM node:$NODE_VERSION-bookworm-slim AS core
Expand Down
2 changes: 1 addition & 1 deletion docker/ghost-dev/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Minimal Development Dockerfile for Ghost Core
# Source code is mounted at runtime for hot-reload support

ARG NODE_VERSION=22.18.0
ARG NODE_VERSION=24.14.1

FROM node:$NODE_VERSION-bullseye-slim

Expand Down
2 changes: 1 addition & 1 deletion ghost/admin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"lint": "yarn lint:js && yarn lint:hbs"
},
"engines": {
"node": "^22.13.1"
"node": "^24.14.1"
},
"devDependencies": {
"@babel/eslint-parser": "7.28.4",
Expand Down
2 changes: 1 addition & 1 deletion ghost/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"prepack": "node monobundle.js"
},
"engines": {
"node": "^22.13.1",
"node": "^24.14.1",
"cli": "^1.27.0"
},
"dependencies": {
Expand Down
Loading