Skip to content

Commit ec76a79

Browse files
authored
Workaround for macOS CI brew update error (#882)
1 parent fa8c878 commit ec76a79

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ jobs:
2323
node-version: 12.x
2424
- name: Update Brew (macOS)
2525
if: matrix.os == 'macOS-latest'
26-
run: brew update
26+
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
2732
- name: Install Chrome (macOS)
2833
if: matrix.os == 'macOS-latest' && matrix.browser == 'ChromeHeadless'
2934
run: brew cask install google-chrome

0 commit comments

Comments
 (0)