From 343cc059fed6933849dab28fdd28969ee625fe47 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Ho=C5=99e=C5=88ovsk=C3=BD?= Date: Fri, 19 Dec 2025 14:38:17 +0100 Subject: [PATCH] Move to newer MacOS GHA runners Macos-13 runners were deprecated, and macos-15 family brings back intel runner that is usable by OSS projects. --- .github/workflows/mac-builds.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/mac-builds.yml b/.github/workflows/mac-builds.yml index 6ac4c2a9..c9a0dad7 100644 --- a/.github/workflows/mac-builds.yml +++ b/.github/workflows/mac-builds.yml @@ -4,13 +4,11 @@ on: [push, pull_request] jobs: build: - # From macos-14 forward, the baseline "macos-X" image is Arm based, - # and not Intel based. runs-on: ${{matrix.image}} strategy: fail-fast: false matrix: - image: [macos-13, macos-14, macos-15] + image: [macos-14, macos-15, macos-15-intel] build_type: [Debug, Release] std: [14, 17]