From a2fa1370c513a4ae7a774f26a517fa74cc9f684a Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 25 Oct 2020 18:26:01 +0000 Subject: [PATCH] build: work around GitHub actions brew problem Brew was failing with fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. See: https://github.com/actions/virtual-environments/issues/1811 See: https://github.com/actions/virtual-environments/issues/1869 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 000cd67d3..a4e1b11b5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -124,6 +124,8 @@ jobs: - name: Install Libraries on macOS shell: bash run: | + brew untap local/homebrew-openssl # workaround for https://github.com/actions/virtual-environments/issues/1811 + brew untap local/homebrew-python2 # workaround for https://github.com/actions/virtual-environments/issues/1811 brew update brew cask install osxfuse if: matrix.os == 'macOS-latest'