From d5ea7b834329c3da688441617abde0ea57177ad0 Mon Sep 17 00:00:00 2001 From: Chisanan232 Date: Mon, 1 Jun 2026 21:15:32 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20(ci):=20Replace=20deprecated=20m?= =?UTF-8?q?acos-13=20with=20macos-15-intel=20runner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub deprecated macos-13 on 2025-09-19; jobs requesting it stay queued forever (no runner ever picks them up). Surfaced when the v0.0.1-alpha.3 build-macos-x86_64 wheel job stayed queued and blocked the publish step until manually cancelled. Switch to macos-15-intel (current GA Intel runner). macos-15 is the last Intel macOS GitHub-hosted runner; macos-26-intel exists too but macos-15 is more battle-tested. Tracked: AAASM-2324 --- .github/workflows/release-python.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release-python.yml b/.github/workflows/release-python.yml index 402f51c..6588c57 100644 --- a/.github/workflows/release-python.yml +++ b/.github/workflows/release-python.yml @@ -201,7 +201,7 @@ jobs: build-macos-x86_64: name: Build macosx_x86_64 wheel - runs-on: macos-13 # Intel runner + runs-on: macos-15-intel # Intel runner (macos-13 sunset 2025-09-19) steps: - uses: actions/checkout@v6 - uses: actions/setup-python@v6