From 41b060565bb2d01417653ac98588e51f575f4cd5 Mon Sep 17 00:00:00 2001 From: Manuel Beck Date: Wed, 26 Nov 2025 21:50:19 +0100 Subject: [PATCH] fix(ios): Set minimum XCode version in GitHub Action to 15 (#386) - 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 the other tests. There is no need to run an older xcode version on an older macos version. Even 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 703d0a6..b6729cf 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