diff --git a/.gitlab/ci/customers.images.yml b/.gitlab/ci/customers.images.yml index cd9cc77..15f78f3 100644 --- a/.gitlab/ci/customers.images.yml +++ b/.gitlab/ci/customers.images.yml @@ -4,7 +4,7 @@ customers: - .build_and_push variables: LFS: '2.9' - CHROME: '89' + CHROME: '101' NODE: '16.14' YARN: '1.22' POSTGRESQL: '10' @@ -19,7 +19,7 @@ customers-qa-assets: extends: - .build_and_push variables: - CHROME: '89' + CHROME: '101' NODE: '16.14' YARN: '1.22' DOCKER: '19.03.1' diff --git a/.gitlab/ci/e2e.images.yml b/.gitlab/ci/e2e.images.yml index 2fc5ab5..d98ca02 100644 --- a/.gitlab/ci/e2e.images.yml +++ b/.gitlab/ci/e2e.images.yml @@ -7,7 +7,7 @@ e2e-base: GIT: '2.33' RUBY: '2.7' BUNDLER: '2.3' - CHROME: '99' + CHROME: '101' extends: - .build_and_push diff --git a/.gitlab/ci/kas.images.yml b/.gitlab/ci/kas.images.yml index 74c7430..106fe87 100644 --- a/.gitlab/ci/kas.images.yml +++ b/.gitlab/ci/kas.images.yml @@ -5,7 +5,7 @@ gitlab-kas: variables: GOLANG: '1.16' LFS: '2.9' - CHROME: '89' + CHROME: '101' NODE: '14.15' YARN: '1.22' GRAPHICSMAGICK: '1.3.36' diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index 4d32d1a..a8e83bf 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -42,10 +42,6 @@ function print_golang_args() { # You may need to bump the version in scripts/install-chrome. function print_chrome_args() { case "$1" in - 89|89.0) - CHROME_VERSION=89.0.4389.90-1 - CHROME_DRIVER_VERSION=89.0.4389.23 - ;; 94|94.0) CHROME_VERSION=94.0.4606.81-1 CHROME_DRIVER_VERSION=94.0.4606.113 @@ -58,6 +54,10 @@ function print_chrome_args() { CHROME_VERSION=99.0.4844.74-1 CHROME_DRIVER_VERSION=99.0.4844.51 ;; + 101|101.0) + CHROME_VERSION=101.0.4951.64-1 + CHROME_DRIVER_VERSION=101.0.4951.41 + ;; *) echo "Unknown chrome version $1"; exit 1; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"