Skip to content

Commit ba5f8ff

Browse files
JeromeBuclaude
andcommitted
chore: upgrade to Node 24 and pnpm 10.32.1
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 18565dc commit ba5f8ff

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: "22"
18+
node-version: "24"
1919
- name: Download Shai-Hulud IOC list
2020
run: |
2121
curl -o iocs.csv https://raw.githubusercontent.com/DataDog/indicators-of-compromise/refs/heads/main/shai-hulud-2.0/consolidated_iocs.csv
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v4
4141
- uses: actions/setup-node@v4
4242
with:
43-
node-version: "22"
43+
node-version: "24"
4444
- name: Install dependencies
4545
run: corepack enable && pnpm install --frozen-lockfile
4646
- name: Build back
@@ -58,7 +58,7 @@ jobs:
5858
- uses: actions/checkout@v4
5959
- uses: actions/setup-node@v4
6060
with:
61-
node-version: "22"
61+
node-version: "24"
6262
- name: Install dependencies
6363
run: corepack enable && pnpm install --frozen-lockfile
6464
- name: Install Playwright browsers

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
22
1+
24

Dockerfile.api

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
# SPDX-FileCopyrightText: 2024-2025 Université Grenoble Alpes
33
# SPDX-License-Identifier: MIT
44

5-
FROM node:22-alpine as build
5+
FROM node:24-alpine as build
66
RUN apk add --no-cache \
77
git \
88
openssh-client \
99
ca-certificates
10-
RUN corepack enable && corepack prepare pnpm@10.9.0 --activate
10+
RUN corepack enable && corepack prepare pnpm@10.32.1 --activate
1111

1212
WORKDIR /app
1313
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./

Dockerfile.web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# SPDX-License-Identifier: MIT
44

55
# build step
6-
FROM node:22-alpine as build
7-
RUN corepack enable && corepack prepare pnpm@10.9.0 --activate
6+
FROM node:24-alpine as build
7+
RUN corepack enable && corepack prepare pnpm@10.32.1 --activate
88
WORKDIR /app
99
COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./
1010
COPY api/package.json api/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
3333
"lefthook": "^1.10.10",
3434
"turbo": "^1.12.5"
3535
},
36-
"packageManager": "pnpm@10.9.0",
36+
"packageManager": "pnpm@10.32.1",
3737
"engines": {
38-
"node": "^22"
38+
"node": ">=24"
3939
},
4040
"dependencies": {}
4141
}

0 commit comments

Comments
 (0)