From a68f9405d196ee26225df3da1466dcf4288f685f Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 19 Feb 2026 16:33:51 +0000 Subject: [PATCH] fix(ci): use macos-latest for darwin builds macos-13 is a legacy Intel runner. macos-latest now resolves to Apple Silicon (ARM64) which is faster and can natively build the arm64 slice. The x64 node architecture constraint is removed since prebuildify already handles cross-compilation via --arch x64+arm64. https://claude.ai/code/session_01FSZYySRpD3pb1fTDVS2jYo --- .github/workflows/build.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index faddac0..ea9bb58 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,8 +11,7 @@ jobs: matrix: include: - name: darwin - os: macos-13 - node: x64 + os: macos-latest command: prebuildify args: --arch x64+arm64 - name: win32-x86