From 836845f5a2a2c346b421ee73f3a9ce12e855ba11 Mon Sep 17 00:00:00 2001 From: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Date: Tue, 23 Apr 2024 19:40:44 +0200 Subject: [PATCH] [CI] [macOS] Fix CI with new GitHub runners New `macos-latest` run on an arm64 image instead of x86_64 breaking the editor workflow. --- .github/workflows/macos_builds.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 4967fe379fc7..04bdf971cac2 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -14,7 +14,7 @@ concurrency: jobs: build-macos: - runs-on: "macos-latest" + runs-on: "macos-12" name: ${{ matrix.name }} strategy: fail-fast: false