From 23bef9a6911bd0f52baa36fb6648cdf7849ab650 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 25 Apr 2024 12:07:30 -0400 Subject: [PATCH] Use `macos-12` to build release wheels (#3264) ## Summary GitHub has started to change `macos-latest` to `macos-14`. But executables built on `macos-14` don't work on macOS 11 (see: https://github.com/astral-sh/uv/issues/3261). This PR explicitly uses `macos-12` instead (which is what we _intended_ to be using anyway). Closes https://github.com/astral-sh/uv/issues/3261. --- .github/workflows/build-binaries.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-binaries.yml b/.github/workflows/build-binaries.yml index 8df6ce0d0..6915d5f74 100644 --- a/.github/workflows/build-binaries.yml +++ b/.github/workflows/build-binaries.yml @@ -63,7 +63,7 @@ jobs: macos-x86_64: if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }} - runs-on: macos-latest + runs-on: macos-12 steps: - uses: actions/checkout@v4 with: @@ -104,7 +104,7 @@ jobs: macos-universal: if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-build') }} - runs-on: macos-latest + runs-on: macos-12 steps: - uses: actions/checkout@v4 with: