From be9c0c30c47569cf3a5ae454a33e9148fa0cdcaf Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 14 Jan 2021 14:07:39 +0700 Subject: [PATCH] GitHub Actions: Update syntax for installing a cask from homebrew. (#225) Homebrew on the macOS build machines for GitHub Actions was updated to version 2.7 and that deprecated the `brew cask install` syntax in favor of `brew install --cask`, so we need to update here. The announcement for the GitHub change is: https://github.com/actions/virtual-environments/issues/2415 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index cfb2f22..f13d0f4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 - name: Install X11 dependencies on MacOS if: ${{ runner.os == 'macOS'}} - run: brew cask install xquartz + run: brew install --cask xquartz - name: Build working-directory: bin run: ./makeright x