From 1c9292fb71dc8668cecc315fc60b088a429dbb82 Mon Sep 17 00:00:00 2001 From: Christoph Settgast Date: Sat, 20 Apr 2024 21:18:35 +0200 Subject: [PATCH] ci: pin to macos-13 as macos-latest is too new for Qt5 The macos-latest runners will transition to macos-14 over the next 12 weeks, but that no longer contains XCode 14.2 that we need to build against Qt5. Thus Pin to macos-13, that has Xcode 14.2. See https://github.blog/changelog/2024-04-01-macos-14-sonoma-is-generally-available-and-the-latest-macos-runner-image/ and https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md Signed-off-by: Christoph Settgast --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55f6c2154c67..fe8bb2e9bd9b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -114,7 +114,7 @@ jobs: macos: name: 'macOS: Build' - runs-on: macos-latest + runs-on: macos-13 needs: version env: VERSION_NUMBER: ${{ needs.version.outputs.version_number }}