From 02c1009c23882f464e3ea5e2f240df9e7c7c8de4 Mon Sep 17 00:00:00 2001 From: Sacha Al Himdani Date: Wed, 10 Sep 2025 17:32:41 +0200 Subject: [PATCH] Update node Signed-off-by: Sacha Al Himdani --- .github/workflows/make.yaml | 4 ++-- .github/workflows/release.yaml | 2 +- .nvmrc | 2 +- package-lock.json | 16 ++++++++-------- package.json | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/make.yaml b/.github/workflows/make.yaml index 4f5422165..69fba1bef 100644 --- a/.github/workflows/make.yaml +++ b/.github/workflows/make.yaml @@ -24,7 +24,7 @@ jobs: go-version: "1.25" - uses: "actions/setup-node@v4" with: - node-version: 22 + node-version-file: ".nvmrc" - run: "npm ci" - uses: "docker/setup-qemu-action@v3" - uses: "docker/setup-buildx-action@v3" @@ -58,7 +58,7 @@ jobs: go-version: "1.25" - uses: "actions/setup-node@v4" with: - node-version: 22 + node-version-file: ".nvmrc" - run: "npm ci" - run: "make build" - run: "make test" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ecdc0dab6..0de021501 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -31,7 +31,7 @@ jobs: - name: Set up Node.js uses: actions/setup-node@v4 with: - node-version: "22" + node-version-file: ".nvmrc" cache: "npm" - name: Install dependencies diff --git a/.nvmrc b/.nvmrc index cc7ce7f49..a8ee7fb34 100644 --- a/.nvmrc +++ b/.nvmrc @@ -1 +1 @@ -v22.13.1 +v24.4.0 diff --git a/package-lock.json b/package-lock.json index 6b6e7f25d..0ee39c472 100644 --- a/package-lock.json +++ b/package-lock.json @@ -14,7 +14,7 @@ "turbo": "^2.5.3" }, "engines": { - "node": "22.x" + "node": "v24.4.0" } }, "apps/console": { @@ -1036,13 +1036,13 @@ } }, "node_modules/@eslint/plugin-kit": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.3.tgz", - "integrity": "sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz", + "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==", "dev": true, "license": "Apache-2.0", "dependencies": { - "@eslint/core": "^0.15.1", + "@eslint/core": "^0.15.2", "levn": "^0.4.1" }, "engines": { @@ -1050,9 +1050,9 @@ } }, "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.1.tgz", - "integrity": "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz", + "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==", "dev": true, "license": "Apache-2.0", "dependencies": { diff --git a/package.json b/package.json index e1737d020..221919490 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "probo", "description": "Probo monorepo containing applications and shared packages", "engines": { - "node": "22.x" + "node": "v24.4.0" }, "workspaces": [ "apps/*", @@ -25,6 +25,6 @@ "license": "MIT", "packageManager": "npm@11.1.0", "volta": { - "node": "22.16.0" + "node": "v24.4.0" } }