From fac50b90c767a2cfc413cc7ba0496fe624f729d4 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Thu, 29 Jan 2026 14:22:43 +0100 Subject: [PATCH] Use latest stable xcode See https://github.com/actions/runner-images/issues/12758#issuecomment-3206748945 --- .github/workflows/build-apple.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build-apple.yml b/.github/workflows/build-apple.yml index 083677e1..504680b6 100644 --- a/.github/workflows/build-apple.yml +++ b/.github/workflows/build-apple.yml @@ -15,12 +15,10 @@ jobs: with: ref: ${{ inputs.ref }} - # This seems to be related to https://github.com/actions/runner-images/issues/12758 - # Select appropriate Xcode version from - # https://github.com/actions/runner-images/blob/main/images/macos/macos-15-arm64-Readme.md#xcode - name: Xcode setup - run: | - sudo xcode-select --switch /Applications/Xcode_16.4.app + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest-stable - name: Common flutter setup uses: ./.github/actions/flutter-common