File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 14
14
steps :
15
15
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
16
16
- name : install Chrome stable
17
+ # Install Chrome version 110.0.5481.177-1 as test starts to fail on version 111.
18
+ # We will retry to use the latest, once version 112 becomes stable.
17
19
run : |
18
20
sudo apt-get update
19
- sudo apt-get install google-chrome-stable
21
+ sudo apt-get install wget
22
+ sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_110.0.5481.177-1_amd64.deb
23
+ sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
20
24
- name : Checkout Repo
21
25
uses : actions/checkout@master
22
26
with :
You can’t perform that action at this time.
0 commit comments