From 515e9c7d60318b8457ae2e4e689b9314df387d30 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Jul 2024 13:09:04 +0000 Subject: [PATCH] Update node Docker tag to v22 | datasource | package | from | to | | ---------- | ----------- | ------ | ------ | | docker | node | 21.7.3 | 22.5.1 | | npm | @types/node | 20.6.2 | 22.0.0 | Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Dockerfile | 4 ++-- package-lock.json | 21 ++++++++++++++++----- package.json | 2 +- 3 files changed, 19 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8748c52..6ad9d9eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:21.7.3-alpine as compiler +FROM node:22.5.1-alpine as compiler RUN mkdir -p /usr/local/source WORKDIR /usr/local/source @@ -11,7 +11,7 @@ COPY ./src ./src RUN npm run build -FROM node:21.7.3-alpine +FROM node:22.5.1-alpine LABEL "repository"="http://github.com/laminas/laminas-ci-matrix-action" LABEL "homepage"="http://github.com/laminas/laminas-ci-matrix-action" LABEL "maintainer"="https://github.com/laminas/technical-steering-committee/" diff --git a/package-lock.json b/package-lock.json index 75bfd65f..f93595c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,7 @@ }, "devDependencies": { "@types/jest": "^29.2.0", - "@types/node": "^20.0.0", + "@types/node": "^22.0.0", "@types/webpack": "^5.28.0", "@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/parser": "^5.41.0", @@ -1551,10 +1551,14 @@ } }, "node_modules/@types/node": { - "version": "20.6.2", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.2.tgz", - "integrity": "sha512-Y+/1vGBHV/cYk6OI1Na/LHzwnlNCAfU3ZNGrc1LdRe/LAIbdDPTTv/HU3M7yXN448aTVDq3eKRm2cg7iKLb8gw==", - "dev": true + "version": "22.0.0", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.0.0.tgz", + "integrity": "sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.11.1" + } }, "node_modules/@types/normalize-package-data": { "version": "2.4.1", @@ -7578,6 +7582,13 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/undici-types": { + "version": "6.11.1", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.11.1.tgz", + "integrity": "sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==", + "dev": true, + "license": "MIT" + }, "node_modules/unist-util-stringify-position": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz", diff --git a/package.json b/package.json index baaca8f8..9be46eb8 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ }, "devDependencies": { "@types/jest": "^29.2.0", - "@types/node": "^20.0.0", + "@types/node": "^22.0.0", "@types/webpack": "^5.28.0", "@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/parser": "^5.41.0",