From 4ff872c9bbf6f8e5f7aedb67d4fa5895bd79cba2 Mon Sep 17 00:00:00 2001 From: PatTheMav Date: Sun, 22 Jun 2025 03:54:21 +0200 Subject: [PATCH] CI: Update macOS runner for building to use Xcode 16.4 The current version of swift-format uses features that are only supported in more recent Swift compiler versions than the one shipped with Xcode 16.1.0. --- .github/workflows/analyze-project.yaml | 4 ++-- .github/workflows/build-project.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/analyze-project.yaml b/.github/workflows/analyze-project.yaml index f620d86e5..218bbbfea 100644 --- a/.github/workflows/analyze-project.yaml +++ b/.github/workflows/analyze-project.yaml @@ -57,8 +57,8 @@ jobs: : Set Up Environment 🔧 if (( ${+RUNNER_DEBUG} )) setopt XTRACE - print '::group::Enable Xcode 16.1' - sudo xcode-select --switch /Applications/Xcode_16.1.0.app/Contents/Developer + print '::group::Enable Xcode 16.4' + sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer print '::endgroup::' print '::group::Clean Homebrew Environment' diff --git a/.github/workflows/build-project.yaml b/.github/workflows/build-project.yaml index f4328ab84..08399f549 100644 --- a/.github/workflows/build-project.yaml +++ b/.github/workflows/build-project.yaml @@ -80,8 +80,8 @@ jobs: : Set Up Environment 🔧 if (( ${+RUNNER_DEBUG} )) setopt XTRACE - print '::group::Enable Xcode 16.1' - sudo xcode-select --switch /Applications/Xcode_16.1.0.app/Contents/Developer + print '::group::Enable Xcode 16.4' + sudo xcode-select --switch /Applications/Xcode_16.4.app/Contents/Developer print '::endgroup::' print '::group::Clean Homebrew Environment'