From a6fa51cb80a403a35ceb74e2609496df888d4fd0 Mon Sep 17 00:00:00 2001 From: Vitaly Slobodin Date: Tue, 9 May 2023 14:47:02 +0000 Subject: [PATCH] Bump Node.js to 18.16.0 --- .gitlab/ci/customers.images.yml | 4 ++-- .gitlab/ci/gitlab.images.yml | 4 ++-- .gitlab/ci/kas.images.yml | 2 +- scripts/lib/custom-docker-build | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab/ci/customers.images.yml b/.gitlab/ci/customers.images.yml index 0264ce0..2596d9f 100644 --- a/.gitlab/ci/customers.images.yml +++ b/.gitlab/ci/customers.images.yml @@ -15,7 +15,7 @@ customers: variables: LFS: '2.9' CHROME: '111' - NODE: '16.14' + NODE: '18.16' YARN: '1.22' POSTGRESQL: '12' GIT: '2.36' @@ -30,7 +30,7 @@ customers-qa-assets: - .customers variables: CHROME: '111' - NODE: '16.14' + NODE: '18.16' YARN: '1.22' GIT: '2.36' parallel: diff --git a/.gitlab/ci/gitlab.images.yml b/.gitlab/ci/gitlab.images.yml index fc30e5b..6cd342d 100644 --- a/.gitlab/ci/gitlab.images.yml +++ b/.gitlab/ci/gitlab.images.yml @@ -28,7 +28,7 @@ gitlab: POSTGRESQL: ['12', '13', '14', '15'] GOLANG: ['1.19', '1.20'] RUST: ['1.65'] - NODE: ['16.14', '18.12'] + NODE: ['16.14', '18.16'] CHROME: ['109'] # Used by GitLab's compile-production-assets and compile-test-assets jobs @@ -47,7 +47,7 @@ gitlab-assets: - OS: ['debian:bullseye'] RUBY: ['2.7', '3.0', '3.1', '3.2'] GIT: ['2.33'] - NODE: ['16.14', '18.12'] + NODE: ['16.14', '18.16'] # Used by GitLab's Review app jobs gitlab-review-app: diff --git a/.gitlab/ci/kas.images.yml b/.gitlab/ci/kas.images.yml index 8e37b23..866a89e 100644 --- a/.gitlab/ci/kas.images.yml +++ b/.gitlab/ci/kas.images.yml @@ -16,7 +16,7 @@ gitlab-kas: RUST: '1.65' LFS: '2.9' CHROME: '111' - NODE: '14.15' + NODE: '18.16' YARN: '1.22' GRAPHICSMAGICK: '1.3.36' GIT: '2.36' diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index 5b99853..12af8e7 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -144,7 +144,7 @@ function print_node_args() { 14.15) NODE_INSTALL_VERSION=14.15.4 ;; 14|14.16) NODE_INSTALL_VERSION=14.16.0 ;; 16|16.14) NODE_INSTALL_VERSION=16.14.2 ;; - 18|18.12) NODE_INSTALL_VERSION=18.12.1 ;; + 18|18.16) NODE_INSTALL_VERSION=18.16.0 ;; *) fail "Unknown node version $1" ;; esac printf -- "--build-arg NODE_INSTALL_VERSION=%s " "$NODE_INSTALL_VERSION"