From ee3ba7c91ce32ed538db0ef0f839c3778af47ce7 Mon Sep 17 00:00:00 2001 From: dstuckey-uoe Date: Fri, 6 Oct 2023 23:35:46 +0100 Subject: [PATCH] Set chrome version to latest. --- .github/workflows/mysql.yml | 2 +- spec/support/capybara.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mysql.yml b/.github/workflows/mysql.yml index 3a1862e388..324d309a3a 100644 --- a/.github/workflows/mysql.yml +++ b/.github/workflows/mysql.yml @@ -31,7 +31,7 @@ jobs: # Install chrome - uses: browser-actions/setup-chrome@v1 with: - chrome-version: '114.0.5735.90' # install latest production Chrome + chrome-version: 'latest' # install latest production Chrome # Copy all of the example configs over - name: 'Setup the application' diff --git a/spec/support/capybara.rb b/spec/support/capybara.rb index 089549c3f2..08d48039eb 100644 --- a/spec/support/capybara.rb +++ b/spec/support/capybara.rb @@ -2,7 +2,7 @@ require 'webdrivers/chromedriver' -Webdrivers::Chromedriver.required_version = '114.0.5735.90' +Webdrivers::Chromedriver.required_version = 'latest' # Cache for one hour Webdrivers.cache_time = 3600