From 5e3c816373b831897a152e60ed858d811ead4bbf Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 18 Oct 2024 12:43:26 +0200 Subject: [PATCH] ci: use macos-13 instead of macos-12 for amd64 builds The macos-12 runner is being deprecated, so we have to switch to a new runner: https://github.com/actions/runner-images/issues/10721 The next one is macos-13, which is still amd64. --- .github/workflows/build-macos.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 5fef339dd7..7fcf46f379 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -16,11 +16,11 @@ jobs: name: build-macos strategy: matrix: - # macos-12: amd64 (oldest supported version as of 05-02-2024) + # macos-13: amd64 (oldest supported version as of 18-10-2024) # macos-14: arm64 (oldest arm64 version) - os: [macos-12, macos-14] + os: [macos-13, macos-14] include: - - os: macos-12 + - os: macos-13 goarch: amd64 - os: macos-14 goarch: arm64