From 8c57ead5c3f8ac55f74c7e7d95c75d563dcf03e0 Mon Sep 17 00:00:00 2001 From: Mike Greiling Date: Tue, 3 Oct 2017 15:59:44 -0500 Subject: [PATCH 1/2] update chrome webdriver to v2.32 --- scripts/install-chrome | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-chrome b/scripts/install-chrome index d98ae7a..a555c61 100755 --- a/scripts/install-chrome +++ b/scripts/install-chrome @@ -12,6 +12,6 @@ env DEBIAN_FRONTEND="noninteractive" apt-get install -y google-chrome-stable=$CH rm -rf /var/lib/apt/lists/* # Install ChromeDriver -wget -q https://chromedriver.storage.googleapis.com/2.31/chromedriver_linux64.zip +wget -q https://chromedriver.storage.googleapis.com/2.32/chromedriver_linux64.zip unzip chromedriver_linux64.zip -d /usr/local/bin rm -f chromedriver_linux64.zip From 6953178bc5ec50897c0d5ecaeb6a7ef12bb4a2f4 Mon Sep 17 00:00:00 2001 From: Mike Greiling Date: Tue, 3 Oct 2017 16:02:36 -0500 Subject: [PATCH 2/2] bump chrome 61 revision --- scripts/custom-docker-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/custom-docker-build b/scripts/custom-docker-build index f1e9240..c8c1a5c 100755 --- a/scripts/custom-docker-build +++ b/scripts/custom-docker-build @@ -20,7 +20,7 @@ function print_golang_args() { function print_chrome_args() { case "$1" in 60|60.0) CHROME_VERSION=60.0.3112.90-1 ;; - 61|61.0) CHROME_VERSION=61.0.3163.91-1 ;; + 61|61.0) CHROME_VERSION=61.0.3163.100-1 ;; *) echo "Unknown chrome version $1"; exit 1; esac printf -- "--build-arg CHROME_VERSION=%s " "$CHROME_VERSION"