Skip to content

Commit 672d7b9

Browse files
authored
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.
1 parent 3588445 commit 672d7b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,13 @@ jobs:
5050
strategy:
5151
matrix:
5252
versions:
53-
- os-version: macos-12
53+
- os-version: macos-14
5454
ios-version: 15.x
55-
xcode-version: 13.x
55+
xcode-version: 15.x
5656

5757
- os-version: macos-14
5858
ios-version: 16.x
59-
xcode-version: 14.x
59+
xcode-version: 15.x
6060

6161
- os-version: macos-14
6262
ios-version: 17.x

0 commit comments

Comments
 (0)