diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ce4a3d8..3373711 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v7 with: - node-version: '22' + node-version: '24' cache: 'npm' - name: Install dependencies @@ -42,7 +42,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v7 with: - node-version: '22' + node-version: '24' cache: 'npm' - name: Install dependencies diff --git a/Dockerfile b/Dockerfile index 38cf23a..c4dbc19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # Multi-stage build for the SvelteKit admin panel. # Stage 1: install and build. Stage 2: minimal runtime with adapter-node output. -ARG NODE_VERSION=22.11.0 +ARG NODE_VERSION=24.18.0 FROM node:${NODE_VERSION}-alpine AS deps WORKDIR /app