From 43a49e35fa0cf97000c70ef495013a0823e5261f Mon Sep 17 00:00:00 2001 From: Jeremie Zitti Date: Tue, 21 Jul 2026 13:48:13 +0100 Subject: [PATCH] =?UTF-8?q?chore(infra):=20align=20Node=20to=2024=20LTS=20?= =?UTF-8?q?(22.11=20=E2=86=92=2024.18)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Vague 1.3 de l'audit d'upgrade. - CI workflow: node-version 22 → 24 - Dockerfile: ARG NODE_VERSION 22.11.0 → 24.18.0 Node 24 est LTS depuis mai 2025 (support jusqu'à octobre 2027). Vérifié local: svelte-check 4287 fichiers 0 error, 0 warning. --- .github/workflows/ci.yml | 4 ++-- Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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