From 58982890ef6cfc680ff0c776df19a61495801c1b Mon Sep 17 00:00:00 2001 From: Marco Eidinger Date: Tue, 10 Dec 2024 06:29:38 -0800 Subject: [PATCH] ci: use Xcode 15.4 (macos-14) --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4381122..6c22f27 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ on: jobs: verify-podspec-install: - runs-on: macos-13 + runs-on: macos-14 steps: - uses: actions/checkout@v4 @@ -102,11 +102,11 @@ jobs: run: sudo xcode-select -p - name: Determine Xcode version needed run: | - neededXcode='Xcode_15.2' + neededXcode='Xcode_15.4' echo "neededXcode=$neededXcode" >> $GITHUB_ENV - - name: "Set Xcode version 15.2" - if: env.neededXcode == 'Xcode_15.2' - run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer + - name: "Set Xcode version 15.4" + if: env.neededXcode == 'Xcode_15.4' + run: sudo xcode-select -s /Applications/Xcode_15.4.app/Contents/Developer - name: Create test application run: | cd .testing