@@ -17,13 +17,14 @@ jobs:
17
17
# Install Chrome so the correct version of webdriver can be installed by chromedriver when
18
18
# setting up the repo. This must be done to build and execute Auth properly.
19
19
- name : install Chrome stable
20
- # Install Chrome version 110.0.5481.177-1 as some Auth tests start to fail on version 111.
21
- # Temporary: Auth team will explore what's going wrong with the auth tests.
20
+ # Pin Chrome version 114.0.5735.90-1 to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790".
21
+ # The failure happens because https://chromedriver.chromium.org/downloads only goes up to version 114.
22
+ # TODO(b/297380444) Update script to install the latest Chrome and ChromeDriver.
22
23
run : |
23
24
sudo apt-get update
24
25
sudo apt-get install wget
25
- 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
26
- sudo apt-get install -f ./google-chrome-stable_110 .0.5481.177 -1_amd64.deb --allow-downgrades
26
+ sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114 .0.5735.90 -1_amd64.deb
27
+ sudo apt-get install -f ./google-chrome-stable_114 .0.5735.90 -1_amd64.deb --allow-downgrades
27
28
- uses : actions/checkout@v3
28
29
- name : Set up Node (16)
29
30
uses : actions/setup-node@v3
@@ -102,13 +103,14 @@ jobs:
102
103
steps :
103
104
# install Chrome so the correct version of webdriver can be installed by chromedriver when setting up the repo
104
105
- name : install Chrome stable
105
- # Install Chrome version 110.0.5481.177-1 as some Auth tests start to fail on version 111.
106
- # Temporary: Auth team will explore what's going wrong with the auth tests.
106
+ # Pin Chrome version 114.0.5735.90-1 to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790".
107
+ # The failure happens because https://chromedriver.chromium.org/downloads only goes up to version 114.
108
+ # TODO(b/297380444) Update script to install the latest Chrome and ChromeDriver.
107
109
run : |
108
110
sudo apt-get update
109
111
sudo apt-get install wget
110
- 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
111
- sudo apt-get install -f ./google-chrome-stable_110 .0.5481.177 -1_amd64.deb --allow-downgrades
112
+ sudo wget http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114 .0.5735.90 -1_amd64.deb
113
+ sudo apt-get install -f ./google-chrome-stable_114 .0.5735.90 -1_amd64.deb --allow-downgrades
112
114
- name : Download build archive
113
115
uses : actions/download-artifact@v3
114
116
with :
0 commit comments