From 24ba6577f043f099e08acf98ae2ce9e30be356f4 Mon Sep 17 00:00:00 2001 From: Dave Snabel-Caunt Date: Tue, 7 Jan 2025 12:17:58 +0000 Subject: [PATCH] Use Xcode 16.2 on CI Xcode 16.0 was removed from the macos-14 image: https://github.com/actions/runner-images/issues/11203 --- .github/workflows/device-tests.yml | 4 ++-- .github/workflows/test-pull-request.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/device-tests.yml b/.github/workflows/device-tests.yml index 4839f41..f0009e0 100644 --- a/.github/workflows/device-tests.yml +++ b/.github/workflows/device-tests.yml @@ -50,8 +50,8 @@ jobs: path: ${{ inputs.working-directory }} token: ${{ secrets.CHECKOUT_TOKEN || github.token }} - - name: Select Xcode 16.0 - run: sudo xcode-select -s /Applications/Xcode_16.app + - name: Select Xcode 16.2 + run: sudo xcode-select -s /Applications/Xcode_16.2.app - name: Authenticate using GitHub App id: auth diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 1bab5a6..3e8d2c7 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -20,8 +20,8 @@ jobs: - name: Install dependencies run: brew install swiftlint - - name: Select Xcode 16.0 - run: sudo xcode-select -s /Applications/Xcode_16.0.app + - name: Select Xcode 16.2 + run: sudo xcode-select -s /Applications/Xcode_16.2.app - name: Run unit tests on iOS run: xcodebuild test -scheme OpenPass -destination "OS=18.0,name=iPhone 15"