Skip to content

Commit a18ebff

Browse files
committed
Unpin Chrome version for test-changed-auth.yml and test-all.yml
1 parent 5c9442d commit a18ebff

File tree

2 files changed

+2
-15
lines changed

2 files changed

+2
-15
lines changed

.github/workflows/test-all.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,9 @@ jobs:
1717
# Install Chrome so the correct version of webdriver can be installed by chromedriver when
1818
# setting up the repo. This must be done to build and execute Auth properly.
1919
- 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.
2220
run: |
2321
sudo apt-get update
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_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
22+
sudo apt-get install google-chrome-stable
2723
- uses: actions/checkout@v3
2824
- name: Set up Node (16)
2925
uses: actions/setup-node@v3

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

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,9 @@ jobs:
1414
steps:
1515
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
1616
- name: install Chrome stable
17-
# Install Chrome version 110.0.5481.177-1 as test starts to fail on version 111.
18-
# Temporary: Auth team will explore what's going wrong with the auth tests.
1917
run: |
2018
sudo apt-get update
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
19+
sudo apt-get install google-chrome-stable
2420
- name: Checkout Repo
2521
uses: actions/checkout@master
2622
with:
@@ -48,16 +44,11 @@ jobs:
4844

4945
runs-on: ubuntu-20.04
5046

51-
# Chrome webdriver version is pinned to avoid install failures like "No such object: chromedriver/LATEST_RELEASE_115.0.5790"
52-
# These are installed even in the Firefox test due to `yarn` command which pulls the devDependency listed in package.json.
5347
steps:
5448
- name: install Firefox stable
5549
run: |
5650
sudo apt-get update
5751
sudo apt-get install firefox
58-
sudo apt-get install wget
59-
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
60-
sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
6152
6253
- name: Checkout Repo
6354
uses: actions/checkout@master

0 commit comments

Comments
 (0)