Skip to content

Commit e881739

Browse files
committed
Try out Xcode 16.1 on CI/CD
1 parent 0fa3458 commit e881739

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/actions/xcbuild/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ runs:
5353
-T /usr/bin/security \
5454
-T /usr/bin/productbuild || true
5555
56-
- name: Set Xcode version (15.4.0)
56+
- name: Set Xcode version (16.1.0)
5757
shell: bash
58-
# https://github.com/actions/runner-images/blob/main/images/macos/macos-13-Readme.md#xcode
59-
run: sudo xcode-select -s /Applications/Xcode_15.4.0.app
58+
# https://github.com/actions/runner-images/blob/main/images/macos/macos-14-Readme.md#xcode
59+
run: sudo xcode-select -s /Applications/Xcode_16.1.0.app
6060

6161
- name: Create Keychain
6262
shell: bash

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ jobs:
122122
123123
- name: Set iOS extra xcode params
124124
if: matrix.platform == 'iOS' && contains(env.UPLOAD_TO, matrix.destination)
125-
run: echo "EXTRA_XCODEBUILD=-sdk iphoneos ${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV
125+
run: echo "EXTRA_XCODEBUILD=-sdk iphoneos18.1 ${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV
126126

127127
- name: Set macOS extra xcode params
128128
if: matrix.platform == 'macOS' && contains(env.UPLOAD_TO, matrix.destination)

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- name: Set EXTRA_XCODEBUILD for iOS
4343
if: matrix.platform == 'iOS'
44-
run: echo "EXTRA_XCODEBUILD=-sdk iphoneos ${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV
44+
run: echo "EXTRA_XCODEBUILD=-sdk iphoneos18.1 ${{ env.APPLE_AUTH_PARAMS }}" >> $GITHUB_ENV
4545

4646
- name: Set EXTRA_XCODEBUILD for macOS
4747
if: matrix.platform == 'macOS'

0 commit comments

Comments
 (0)