From 23cef0e7ed1b1dd015b06669393445c6083f5157 Mon Sep 17 00:00:00 2001 From: Lucas Garron Date: Sun, 17 Mar 2024 19:25:43 -0700 Subject: [PATCH] Try using `HOMEBREW_NO_AUTO_UPDATE=1` to fix the macOS 13 runner. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c605fec..66f504f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,12 +4,12 @@ jobs: test: strategy: matrix: - os: [macos-12, macos-14] + os: [macos-12, macsos-13, macos-14] runs-on: ${{ matrix.os }} steps: - name: Checkout code uses: actions/checkout@v4 - name: Install ImageMagick - run: brew install imagemagick + run: env HOMEBREW_NO_AUTO_UPDATE=1 brew install imagemagick - name: make test run: make test