From 85164312e2aac2ceda00c6224ea6cc31b3bb681b Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Mon, 18 Aug 2025 17:37:26 -0400 Subject: [PATCH] feat(ci): Select Xcode 16.4 in combine workflow Explicitly select Xcode 16.4 in the combine workflow to ensure the correct version is used. This addresses an issue where the CI was failing due to an incorrect Xcode version. --- .github/workflows/combine.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/combine.yml b/.github/workflows/combine.yml index 268d7c21d8c..fbfc57710fd 100644 --- a/.github/workflows/combine.yml +++ b/.github/workflows/combine.yml @@ -67,6 +67,9 @@ jobs: - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1 + - name: Xcode + run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer + - name: Install xcpretty run: gem install xcpretty @@ -88,6 +91,8 @@ jobs: with: cache_key: ${{ matrix.os }} - uses: ruby/setup-ruby@354a1ad156761f5ee2b7b13fa8e09943a5e8d252 # v1 + - name: Xcode + run: sudo xcode-select -s /Applications/Xcode_16.4.app/Contents/Developer - name: Setup Bundler run: scripts/setup_bundler.sh - name: Install xcpretty