From 83234d453fb9b5337dc7a2b3ec7c9aaf01ad2600 Mon Sep 17 00:00:00 2001 From: Corentin Le Molgat Date: Fri, 7 Nov 2025 10:17:24 +0100 Subject: [PATCH] ci: use macos-15-intel runners ref: https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ --- .github/workflows/amd64_macos_bazel.yml | 2 +- .github/workflows/amd64_macos_cmake.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/amd64_macos_bazel.yml b/.github/workflows/amd64_macos_bazel.yml index 5b21cba..0be8749 100644 --- a/.github/workflows/amd64_macos_bazel.yml +++ b/.github/workflows/amd64_macos_bazel.yml @@ -11,7 +11,7 @@ on: jobs: # Building using the github runner environement directly. bazel: - runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images + runs-on: macos-15-intel # Using x86 processors steps: - name: Check out repository code uses: actions/checkout@v5 diff --git a/.github/workflows/amd64_macos_cmake.yml b/.github/workflows/amd64_macos_cmake.yml index 1bf3709..54ced4f 100644 --- a/.github/workflows/amd64_macos_cmake.yml +++ b/.github/workflows/amd64_macos_cmake.yml @@ -11,7 +11,7 @@ on: jobs: # Building using the github runner environement directly. xcode: - runs-on: macos-13 # Using x86 processors, ref: https://github.com/actions/runner-images + runs-on: macos-15-intel # Using x86 processors env: CTEST_OUTPUT_ON_FAILURE: 1 steps: