From f616302126dd52854d8c2bd97892831c8ca5ca81 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Thu, 2 Jun 2022 10:18:33 -0700 Subject: [PATCH] Apparently macOS-12.4 isn't an option. But it's not an _error_ --- github just waits forever for a runner to be available? Anyway, from https://github.blog/changelog/2022-04-25-github-actions-public-beta-of-macos-12-for-github-hosted-runners-is-now-available/ it looks like `macos-12` should work. There's also `macos-latest`, but it sounds like that's still `macos-11` atm, so although we should probably come back and switch to that, it's a bit early yet. Although we could switch to `macos-latest` but explicitly say that we need the homebrew coreutils installed? --- .github/workflows/toybox.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/toybox.yml b/.github/workflows/toybox.yml index f742add5..a2f06219 100644 --- a/.github/workflows/toybox.yml +++ b/.github/workflows/toybox.yml @@ -8,7 +8,7 @@ on: jobs: MacOS-12: - runs-on: macos-12.4 + runs-on: macos-12 steps: - uses: actions/checkout@v2 -- 2.39.2