From b7fc4392761e61f83facf0ac64d62b3881cbb0a6 Mon Sep 17 00:00:00 2001 From: guihkx <626206+guihkx@users.noreply.github.com> Date: Sat, 11 Nov 2023 15:05:14 -0300 Subject: [PATCH] fix(ci): Update to macOS 12 runner for Homebrew build jobs macOS 11 isn't officially supported by Homebrew anymore, which means they have stopped distributing Qt binaries for that version. This made some of our macOS jobs to timeout in the "Install Qt" step, because Qt was being built from source... Please note that this change will not have any impact on macOS users, since we distribute official binaries from Qt, not from Homebrew. --- .github/workflows/macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 77bf1b90c..73a07bf2d 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -15,11 +15,11 @@ jobs: fail-fast: false matrix: include: - - os: macos-11 + - os: macos-12 qt-version-major: 5 build-type: debug - - os: macos-11 + - os: macos-12 qt-version-major: 6 build-type: debug steps: