From 263a0d25edf0e56358a6132158d96f06bf94701b Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Thu, 25 Apr 2024 12:07:25 -0400 Subject: [PATCH] Use `macos-12` to build release wheels (#11146) ## 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). --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index cd8baea2c11b5..97bba8bc87336 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,7 +58,7 @@ jobs: path: dist macos-x86_64: - runs-on: macos-latest + runs-on: macos-12 steps: - uses: actions/checkout@v4 with: @@ -98,7 +98,7 @@ jobs: *.sha256 macos-universal: - runs-on: macos-latest + runs-on: macos-12 steps: - uses: actions/checkout@v4 with: