From 65d2739ed91e238d8aaedb2793fc156a91029206 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Overg=C3=A5rd=20Nielsen?= Date: Fri, 8 Mar 2024 15:40:17 +0100 Subject: [PATCH] Use xcode 15.2 --- .github/workflows/build-native.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-native.yml b/.github/workflows/build-native.yml index b013d965e..1caa00ddb 100644 --- a/.github/workflows/build-native.yml +++ b/.github/workflows/build-native.yml @@ -51,9 +51,11 @@ jobs: if: startsWith(matrix.build, 'android') run: echo "ANDROID_NDK=$ANDROID_NDK_LATEST_HOME" >> $GITHUB_ENV - - name: Downgrade XCode for MacOS + - name: Select XCode for MacOS if: matrix.build == 'macos' - run: sudo xcode-select -s /Applications/Xcode_14.0.1.app + run: | + xcodes installed + xcodes select 15.2 - name: Build if: steps.check-cache.outputs.cache-hit != 'true'