From 0beab67bdfe21e52315da42727fa108b04bf7876 Mon Sep 17 00:00:00 2001 From: Steven Sherry Date: Mon, 12 Feb 2024 13:59:45 -0600 Subject: [PATCH] chore(ci): Update runner to macos-14 and update to Xcode 15.1 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0cee273..e564f59 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,16 +3,16 @@ name: CI on: push: branches: - - '**' + - "**" pull_request: branches: - - '**' + - "**" jobs: test: - runs-on: macos-12 + runs-on: macos-14 timeout-minutes: 30 steps: - - run: sudo xcode-select --switch /Applications/Xcode_14.1.app + - run: sudo xcode-select --switch /Applications/Xcode_15.1.app - uses: actions/checkout@v3 - name: Install xcpretty run: gem install xcpretty @@ -21,12 +21,12 @@ jobs: set -eo pipefail xcodebuild test \ -scheme IonicPortals \ - -destination 'platform=iOS Simulator,name=iPhone 13' | xcpretty + -destination 'platform=iOS Simulator,name=iPhone 15' | xcpretty validate-podspec: runs-on: macos-12 timeout-minutes: 30 steps: - - run: sudo xcode-select --switch /Applications/Xcode_14.1.app + - run: sudo xcode-select --switch /Applications/Xcode_15.1.app - uses: actions/checkout@v3 - name: Install cocoapods run: gem install cocoapods