diff --git a/.gitlab/ci/e2e.images.yml b/.gitlab/ci/e2e.images.yml index f5c0b55..6f436f1 100644 --- a/.gitlab/ci/e2e.images.yml +++ b/.gitlab/ci/e2e.images.yml @@ -24,7 +24,7 @@ e2e-chrome: extends: - e2e-docker variables: - CHROME: '103' + CHROME: '104' parallel: matrix: - RUBY: ['2.7', '3.0'] diff --git a/scripts/lib/custom-docker-build b/scripts/lib/custom-docker-build index 575b4e0..d021ce6 100755 --- a/scripts/lib/custom-docker-build +++ b/scripts/lib/custom-docker-build @@ -54,6 +54,9 @@ function print_chrome_args() { 103|103.0) CHROME_VERSION=103.0.5060.114-1 ;; + 104|104.0) + CHROME_VERSION=104.0.5112.101-1 + ;; *) echo "Unknown chrome version $1"; exit 1; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"