From 35f2f59db7e298decf23ba55604b8b198fe9ed8d Mon Sep 17 00:00:00 2001 From: David Feltell Date: Thu, 8 Jan 2026 16:07:23 +0000 Subject: [PATCH] [CI] Bump MacOS GitHub runner version Part of OpenAssetIO/OpenAssetIO#1480. GitHub have deprecated their macos-13 runners, so we must bump to a later MacOS version for CI tests. We choose macos-15-intel because * 15 is the latest, and we want maximum time before having to deal with another deprecation. * Intel because at time of writing we still don't build `openassetio` wheels for MacOS ARM. Signed-off-by: David Feltell --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a6052b..790f78f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,7 +32,7 @@ jobs: strategy: fail-fast: false matrix: - os: ["windows-latest", "ubuntu-latest", "macos-13"] + os: ["windows-latest", "ubuntu-latest", "macos-15-intel"] python: ["3.10", "3.11"] steps: - uses: actions/checkout@v6