From 54b7ab3520f1868b3f30a548613ccd0c902d2b9a Mon Sep 17 00:00:00 2001 From: Manuel Beck Date: Wed, 26 Nov 2025 14:13:49 +0100 Subject: [PATCH] fix(ios): Set minimum XCode version in GitHub Action to 15 - The iOS 16.x Test failed, because the XCode version 14.x could not be found. A minimum XCode version would be 15.x. - Made ios-version 15.x test equal with with the other tests. There is no need to run an older xcode version on an older macos version. Event the recent XCode version 26 does support iOS 15, so it's ok to use minimum XCode 15. --- .github/workflows/ios.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 703d0a61..b6729cf6 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -50,13 +50,13 @@ jobs: strategy: matrix: versions: - - os-version: macos-12 + - os-version: macos-14 ios-version: 15.x - xcode-version: 13.x + xcode-version: 15.x - os-version: macos-14 ios-version: 16.x - xcode-version: 14.x + xcode-version: 15.x - os-version: macos-14 ios-version: 17.x