From f6a57ee29c51a2498fbd43d91320a012b20cc8af Mon Sep 17 00:00:00 2001 From: Tavian Barnes Date: Fri, 10 Dec 2021 15:49:43 -0500 Subject: ci/macos: Downgrade to macOS 10.15 macOS 11 comes with a broken touch(1) that ignores -h. Work around it for now by downgrading macOS. Link: https://apple.stackexchange.com/a/425730/397839 --- .github/workflows/macos.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ab359e1..7378256 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -4,7 +4,8 @@ on: [push, pull_request] jobs: build: - runs-on: macos-latest + # macOS 11 is broken due to https://apple.stackexchange.com/a/425730/397839 + runs-on: macOS-10.15 steps: - uses: actions/checkout@v2 -- cgit v1.2.3