From fa930fabf961cacd080c22e4846040da704e537b Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 01:31:11 +0000 Subject: [PATCH] fix(deps): update dependency node to v24 --- .github/workflows/test.yml | 4 ++-- Dockerfile | 4 ++-- package-lock.json | 31 ++++++++----------------------- package.json | 2 +- 4 files changed, 13 insertions(+), 28 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed6572c1..a330de6b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,7 +17,7 @@ jobs: - uses: actions/checkout@v7 - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 cache: npm - run: npm ci - run: npm run build @@ -30,7 +30,7 @@ jobs: - uses: actions/checkout@v7 - uses: actions/setup-node@v7 with: - node-version: 22 + node-version: 24 cache: npm - run: npm ci - run: npm run build diff --git a/Dockerfile b/Dockerfile index 10780c58..8e8c71fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG BUILDPLATFORM # -- compilation -- -FROM --platform=$BUILDPLATFORM node:22.23.1-alpine AS build +FROM --platform=$BUILDPLATFORM node:24.19.0-alpine AS build WORKDIR /app # install dependencies @@ -18,7 +18,7 @@ COPY . . RUN npm run build # -- execution -- -FROM node:22.23.1-alpine +FROM node:24.19.0-alpine WORKDIR /app RUN apk add --no-cache tini diff --git a/package-lock.json b/package-lock.json index 183ad680..2ff8e8a2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -34,7 +34,7 @@ "@meyfa/eslint-config": "9.0.0", "@types/mocha": "10.0.10", "@types/ms": "2.1.0", - "@types/node": "22.20.0", + "@types/node": "24.13.3", "@types/passport-local": "1.0.38", "eslint": "9.39.4", "eslint-plugin-jsx-a11y": "6.10.2", @@ -2245,21 +2245,6 @@ "ws": "^8.18.2" } }, - "node_modules/@kubernetes/client-node/node_modules/@types/node": { - "version": "24.13.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.2.tgz", - "integrity": "sha512-fRa09kZTgu8o71KFcDjUFuc7F+dEbZYZmkI0mg5YBTRs0yMKjYHsq/c0urDKeDb+D5qVgXOdFcuu+DZPKOITwA==", - "license": "MIT", - "dependencies": { - "undici-types": "~7.18.0" - } - }, - "node_modules/@kubernetes/client-node/node_modules/undici-types": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", - "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", - "license": "MIT" - }, "node_modules/@lukeed/ms": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@lukeed/ms/-/ms-2.0.2.tgz", @@ -3236,12 +3221,12 @@ "license": "MIT" }, "node_modules/@types/node": { - "version": "22.20.0", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.20.0.tgz", - "integrity": "sha512-QWlFW2wf3nTjC13/DqRnBpR4ZO36VJH/JVBkA/vcnmbTBNQIlnObqyqZE1tUR7+Ni23Lda8R1BxMfbXRpCUx5g==", + "version": "24.13.3", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.13.3.tgz", + "integrity": "sha512-Dh8vAsV36ig5wa9OX4pXvMc9D3Veibfw2wix0CUwYODLD8nkj9UsLjASr49nPg+2eKzxhBV+v7L8pXvT4e639Q==", "license": "MIT", "dependencies": { - "undici-types": "~6.21.0" + "undici-types": "~7.18.0" } }, "node_modules/@types/node-fetch": { @@ -10355,9 +10340,9 @@ } }, "node_modules/undici-types": { - "version": "6.21.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", - "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "version": "7.18.2", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.18.2.tgz", + "integrity": "sha512-AsuCzffGHJybSaRrmr5eHr81mwJU3kjw6M+uprWvCXiNeN9SOGwQ3Jn8jb8m3Z6izVgknn1R0FTCEAP2QrLY/w==", "license": "MIT" }, "node_modules/update-browserslist-db": { diff --git a/package.json b/package.json index b2d0d461..b7a29b40 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,7 @@ "@meyfa/eslint-config": "9.0.0", "@types/mocha": "10.0.10", "@types/ms": "2.1.0", - "@types/node": "22.20.0", + "@types/node": "24.13.3", "@types/passport-local": "1.0.38", "eslint": "9.39.4", "eslint-plugin-jsx-a11y": "6.10.2",