Skip to content

Commit 6aaa48a

Browse files
committed
Re-pin webdriver version in Firefox test to avoid install failures
1 parent a18ebff commit 6aaa48a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/test-changed-auth.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,16 @@ jobs:
4444

4545
runs-on: ubuntu-20.04
4646

47+
# Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
48+
# These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
4749
steps:
4850
- name: install Firefox stable
4951
run: |
5052
sudo apt-get update
5153
sudo apt-get install firefox
54+
sudo apt-get install wget
55+
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
56+
sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
5257
5358
- name: Checkout Repo
5459
uses: actions/checkout@master

0 commit comments

Comments
 (0)