From 27c5e945645f8a6946a9809a180ca5a85a61fa17 Mon Sep 17 00:00:00 2001 From: yokofly Date: Sun, 14 Jun 2026 21:31:41 -0700 Subject: [PATCH] Use macos-14 runner for release wheels (macos-13 retired) GitHub is retiring the Intel macos-13 runners, so the release workflow's macOS leg queued indefinitely and blocked publish-to-pypi (the Linux and Windows cp314t wheels built fine). macos-14 is Apple Silicon (arm64); cibuildwheel builds the arm64 wheels natively and cross-builds the x86_64 ones (x86_64 can't be tested on an arm64 runner). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/actions.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 895cf87..84e34ef 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -11,7 +11,10 @@ jobs: contents: write strategy: matrix: - os: [ ubuntu-22.04 , windows-2022, macos-13 ] + # macos-13 (Intel) runners are retired; macos-14 is Apple Silicon + # (arm64). cibuildwheel builds arm64 natively and cross-builds the + # x86_64 wheels (x86_64 can't be tested on an arm64 runner). + os: [ ubuntu-22.04 , windows-2022, macos-14 ] steps: - uses: actions/checkout@v4 - name: Get proton-python-driver tag