From dcaed9887f4720bfdb12abc3eee216a6ea2adfb2 Mon Sep 17 00:00:00 2001 From: Adam-Aghili <149833988+Adam-Aghili@users.noreply.github.com> Date: Tue, 6 Jan 2026 14:30:28 -0500 Subject: [PATCH] fix: add back in macOS amd64 runners (#10784) macos-13 runners are depricated adding back in macOS-latest refs: https://github.com/actions/runner-images https://github.com/actions/partner-runner-images --- .github/workflows/cross-platform-test.yml | 27 ++++++++++++++--------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cross-platform-test.yml b/.github/workflows/cross-platform-test.yml index b84174ffd6..9d19086f79 100644 --- a/.github/workflows/cross-platform-test.yml +++ b/.github/workflows/cross-platform-test.yml @@ -89,10 +89,15 @@ jobs: arch: amd64 runner: ubuntu-latest python-version: "3.12" - # macOS-13 Brown out - # TODO add macos-15-intel - # https://github.com/actions/runner-images/issues/13046 - # https://github.com/godot-rust/gdext/pull/1402 + # macOS AMD64 + - os: macos + arch: amd64 + runner: macos-latest-large + python-version: "3.10" + - os: macos + arch: amd64 + runner: macos-latest-large + python-version: "3.12" # macOS ARM64 (Apple Silicon) - os: macos arch: arm64 @@ -387,16 +392,18 @@ jobs: arch: amd64 runner: ubuntu-latest python-version: "3.13" - # macOS-13 Brown out - # TODO add macos-15-intel - - os: macos - arch: arm64 - runner: macos-latest - python-version: "3.13" - os: windows arch: amd64 runner: windows-latest python-version: "3.13" + - os: macos + arch: amd64 + runner: macos-latest-large + python-version: "3.13" + - os: macos + arch: arm64 + runner: macos-latest + python-version: "3.13" steps: - name: Determine install method