From 0675c8f52a32d75b4b92208801b2fd752ab6660f Mon Sep 17 00:00:00 2001 From: Lex Christopherson Date: Fri, 13 Mar 2026 14:53:28 -0600 Subject: [PATCH] fix: use macos-14 for darwin-x64 cross-compilation macos-13 runners are deprecated on GitHub Actions. Use macos-14 (ARM64) and cross-compile for x86_64-apple-darwin instead. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/build-native.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index b84cb7e63..28d8a3553 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -24,7 +24,7 @@ jobs: - os: macos-14 target: aarch64-apple-darwin platform: darwin-arm64 - - os: macos-13 + - os: macos-14 target: x86_64-apple-darwin platform: darwin-x64 - os: ubuntu-latest