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