Skip to content

Commit

Permalink
[Auth] Pin Chrome version 110.0.5481.177-1 for "Test Auth on Chrome a…
Browse files Browse the repository at this point in the history
…nd Node If Changed test" (#7157)

* Use Chrome version 110.0.5481.177-1 for Test Auth on Chrome and Node If Changed test

* add sudo

* add sudo to wget command

* add sudo to apt-get

* add --allow-downgrades

* remove testing comment

* add comment explaining the change
  • Loading branch information
NhienLam committed Mar 28, 2023
1 parent eb04945 commit 0e1f12c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/test-changed-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,13 @@ jobs:
steps:
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
- name: install Chrome stable
# Install Chrome version 110.0.5481.177-1 as test starts to fail on version 111.0.5563.64-1.
# We will retry to use the latest, once Chrome releases stable version 112 (April 4 ETA).
run: |
sudo apt-get update
sudo apt-get install google-chrome-stable
sudo apt-get install wget
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
sudo apt-get install -f ./google-chrome-stable_110.0.5481.177-1_amd64.deb --allow-downgrades
- name: Checkout Repo
uses: actions/checkout@master
with:
Expand Down

0 comments on commit 0e1f12c

Please sign in to comment.