From 3e2bf9a96cac152ef50c6d0effe148e7500cd85b Mon Sep 17 00:00:00 2001 From: jonwzheng Date: Mon, 5 Jan 2026 10:14:29 -0500 Subject: [PATCH] Update Github to use new Mac runners As of December the macOS 13 runner image is deprecated (https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/) In light of this we are switching to the macOS-15-intel with the intel architecture. --- .github/workflows/CI.yml | 4 ++-- .github/workflows/conda_build.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 936c319b1e..722b8ad39b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -64,10 +64,10 @@ jobs: fail-fast: false matrix: python-version: ["3.9"] - os: [macos-13, macos-latest, ubuntu-latest] + os: [macos-15-intel, macos-latest, ubuntu-latest] include-rms: ["", "with RMS"] exclude: - - os: macos-13 # GitHub's runners just aren't up to the task of installing Julia + - os: macos-15-intel # GitHub's runners just aren't up to the task of installing Julia include-rms: 'with RMS' runs-on: ${{ matrix.os }} name: Python ${{ matrix.python-version }} ${{ matrix.os }} Build and Test ${{ matrix.include-rms }} diff --git a/.github/workflows/conda_build.yml b/.github/workflows/conda_build.yml index 7c6a7b32f5..1cbbdcb31d 100644 --- a/.github/workflows/conda_build.yml +++ b/.github/workflows/conda_build.yml @@ -15,7 +15,7 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-13, macos-latest] + os: [ubuntu-latest, macos-15-intel, macos-latest] numpy-version: ["1.26"] python-version: ["3.9"] runs-on: ${{ matrix.os }}