We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2649098 commit fb6df83Copy full SHA for fb6df83
.github/workflows/test-changed-auth.yml
@@ -14,9 +14,13 @@ jobs:
14
steps:
15
# install Chrome first, so the correct version of webdriver can be installed by chromedriver when setting up the repo
16
- name: install Chrome stable
17
+ # Install Chrome version 110.0.5481.177-1 as test starts to fail on version 111.
18
+ # We will retry to use the latest, once version 112 becomes stable.
19
run: |
20
sudo apt-get update
- sudo apt-get install google-chrome-stable
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
24
- name: Checkout Repo
25
uses: actions/checkout@master
26
with:
0 commit comments