We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa8c878 commit ec76a79Copy full SHA for ec76a79
.github/workflows/ci.yml
@@ -23,7 +23,12 @@ jobs:
23
node-version: 12.x
24
- name: Update Brew (macOS)
25
if: matrix.os == 'macOS-latest'
26
- run: brew update
+ run: |
27
+ # Workaround https://github.com/actions/virtual-environments/issues/1811
28
+ brew untap local/homebrew-openssl
29
+ brew untap local/homebrew-python2
30
+ # End workaround
31
+ brew update
32
- name: Install Chrome (macOS)
33
if: matrix.os == 'macOS-latest' && matrix.browser == 'ChromeHeadless'
34
run: brew cask install google-chrome
0 commit comments