From 43a49e35fa0cf97000c70ef495013a0823e5261f Mon Sep 17 00:00:00 2001 From: Jeremie Zitti Date: Tue, 21 Jul 2026 13:48:13 +0100 Subject: [PATCH 1/2] =?UTF-8?q?chore(infra):=20align=20Node=20to=2024=20LT?= =?UTF-8?q?S=20(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 From 00f3daa79af36d995df901cd3c076f85d8c6ff74 Mon Sep 17 00:00:00 2001 From: Jeremie Zitti Date: Tue, 21 Jul 2026 15:10:10 +0100 Subject: [PATCH 2/2] =?UTF-8?q?chore(deps-dev):=20bump=20tailwindcss=204.2?= =?UTF-8?q?=20=E2=86=92=204.3=20(align=20with=20@tailwindcss/vite)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svelte-check: 0 errors. --- package-lock.json | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 7a307ab..9ba14be 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30,7 +30,7 @@ "pg": "^8.22.0", "svelte": "^5.56.7", "svelte-check": "^4.7.3", - "tailwindcss": "^4.2.2", + "tailwindcss": "4.3", "typescript": "^6.0.3", "vite": "^8.1.5", "vitest": "^4.1.10" diff --git a/package.json b/package.json index 299f836..9477320 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "pg": "^8.22.0", "svelte": "^5.56.7", "svelte-check": "^4.7.3", - "tailwindcss": "^4.2.2", + "tailwindcss": "4.3", "typescript": "^6.0.3", "vite": "^8.1.5", "vitest": "^4.1.10"