Skip to content

Commit

Permalink
Workaround for macOS CI brew update error (#882)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletsang authored Oct 22, 2020
1 parent fa8c878 commit ec76a79
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,12 @@ jobs:
node-version: 12.x
- name: Update Brew (macOS)
if: matrix.os == 'macOS-latest'
run: brew update
run: |
# Workaround https://github.com/actions/virtual-environments/issues/1811
brew untap local/homebrew-openssl
brew untap local/homebrew-python2
# End workaround
brew update
- name: Install Chrome (macOS)
if: matrix.os == 'macOS-latest' && matrix.browser == 'ChromeHeadless'
run: brew cask install google-chrome
Expand Down

0 comments on commit ec76a79

Please sign in to comment.