diff --git a/Dockerfile.danger b/Dockerfile.danger index f6a7716..411f243 100644 --- a/Dockerfile.danger +++ b/Dockerfile.danger @@ -6,7 +6,7 @@ MAINTAINER GitLab Quality Team # eg. https://gitlab.com/gitlab-org/gitlab-foss/-/jobs/275286625 ENV LC_ALL "C.UTF-8" -ENV NODE_VERSION=16.14.0 +ENV NODE_VERSION=16.14.2 ENV YARN_VERSION=1.22.17 ENV GITLAB_GEM_VERSION=4.18.0 ENV DANGER_GEM_VERSION=8.4.5 diff --git a/scripts/custom-docker-build b/scripts/custom-docker-build index d3f7c54..17c5e56 100755 --- a/scripts/custom-docker-build +++ b/scripts/custom-docker-build @@ -104,7 +104,7 @@ function print_node_args() { 12.22) NODE_INSTALL_VERSION=12.22.1 ;; 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.0 ;; + 16|16.14) NODE_INSTALL_VERSION=16.14.2 ;; *) echo "Unknown node version $1"; exit 1; esac printf -- "--build-arg NODE_INSTALL_VERSION=%s " "$NODE_INSTALL_VERSION" diff --git a/scripts/install-node b/scripts/install-node index c97019f..f0086e3 100755 --- a/scripts/install-node +++ b/scripts/install-node @@ -2,7 +2,7 @@ set -xeuo pipefail IFS=$'\n\t' -NODE_INSTALL_VERSION=${1:-16.14.0} +NODE_INSTALL_VERSION=${1:-16.14.2} YARN_INSTALL_VERSION=${2:-1.22.17} # Map MAJOR.MINOR.patch -> MAJOR.x diff --git a/scripts/install-www-gitlab-com b/scripts/install-www-gitlab-com index 0177b5c..6b851c2 100755 --- a/scripts/install-www-gitlab-com +++ b/scripts/install-www-gitlab-com @@ -20,7 +20,7 @@ apt-get install -yq --no-install-recommends \ apt-get install -yq --no-install-recommends imagemagick # Install node & yarn -NODE_INSTALL_VERSION=16.14.0 +NODE_INSTALL_VERSION=16.14.2 YARN_INSTALL_VERSION=1.22.10 /scripts/install-node $NODE_INSTALL_VERSION $YARN_INSTALL_VERSION && node --version && yarn --version