File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7676
7777 - name : Install Chrome
7878 uses : browser-actions/setup-chrome@v2.1.1 # https://github.com/browser-actions/setup-chrome
79+ id : setup-chrome
7980 with :
8081 chrome-version : ' 147.0.7727.56' # Must match version in mise.toml
8182 install-dependencies : false # Default: false
9394 run : |
9495 robot --version || :
9596 chrome --version
97+ google-chrome --version
9698 chromedriver --version
9799
100+ # Workaround: chrome installed by setup-chrome clashes with chrome bundled with runner
101+ # See: https://github.com/browser-actions/setup-chrome/issues/619
102+ - name : Override system Chrome
103+ run : sudo ln -svf ${{steps.setup-chrome.outputs.chrome-path}} /usr/bin/google-chrome
104+
98105 - name : Restore existing cache
99106 uses : actions/cache@v5.0.2 # https://github.com/actions/cache
100107 with :
Original file line number Diff line number Diff line change 8686
8787 - name : Install Chrome
8888 uses : browser-actions/setup-chrome@v2.1.1 # https://github.com/browser-actions/setup-chrome
89+ id : setup-chrome
8990 with :
9091 chrome-version : ' 147.0.7727.56' # Must match version in mise.toml
9192 install-dependencies : false # Default: false
@@ -103,8 +104,14 @@ jobs:
103104 run : |
104105 robot --version || :
105106 chrome --version
107+ google-chrome --version
106108 chromedriver --version
107109
110+ # Workaround: chrome installed by setup-chrome clashes with chrome bundled with runner
111+ # See: https://github.com/browser-actions/setup-chrome/issues/619
112+ - name : Override system Chrome
113+ run : sudo ln -svf ${{steps.setup-chrome.outputs.chrome-path}} /usr/bin/google-chrome
114+
108115 - name : Restore existing cache
109116 uses : actions/cache@v5.0.2 # https://github.com/actions/cache
110117 with :
Original file line number Diff line number Diff line change 7777
7878 - name : Install Chrome
7979 uses : browser-actions/setup-chrome@v2.1.1 # https://github.com/browser-actions/setup-chrome
80+ id : setup-chrome
8081 with :
8182 chrome-version : ' 147.0.7727.56' # Must match version in mise.toml
8283 install-dependencies : false # Default: false
9495 run : |
9596 robot --version || :
9697 chrome --version
98+ google-chrome --version
9799 chromedriver --version
98100
101+ # Workaround: chrome installed by setup-chrome clashes with chrome bundled with runner
102+ # See: https://github.com/browser-actions/setup-chrome/issues/619
103+ - name : Override system Chrome
104+ run : sudo ln -svf ${{steps.setup-chrome.outputs.chrome-path}} /usr/bin/google-chrome
105+
99106 - name : Restore existing cache
100107 uses : actions/cache@v5.0.2 # https://github.com/actions/cache
101108 with :
You can’t perform that action at this time.
0 commit comments