From d3614a2b2cefd1e8efab20dd9609aa5ace0b0285 Mon Sep 17 00:00:00 2001 From: stechiu Date: Fri, 15 Mar 2024 14:57:36 -0700 Subject: [PATCH] Bumped MacOS version --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/tests.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d46c3346ec..169e7d2bc6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ concurrency: jobs: cocoapods: name: CocoaPods (Xcode 15.0.1) - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Check out repository uses: actions/checkout@v3 @@ -21,7 +21,7 @@ jobs: run: pod lib lint carthage: name: Carthage (Xcode 15.0.1) - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Check out repository uses: actions/checkout@v3 @@ -48,7 +48,7 @@ jobs: run: xcodebuild -project 'SampleApps/CarthageTest/CarthageTest.xcodeproj' -scheme 'CarthageTest' clean build CODE_SIGNING_ALLOWED=NO spm: name: SPM (Xcode 15.0.1) - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Check out repository uses: actions/checkout@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d0564ddcb..830e18bcd3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -8,7 +8,7 @@ on: jobs: release: name: Release - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Check out repository uses: actions/checkout@v2 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 4e20a3481d..adfc301a1e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ concurrency: jobs: unit_test_job: name: Unit - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Checkout repository uses: actions/checkout@v3 @@ -23,7 +23,7 @@ jobs: run: set -o pipefail && xcodebuild -workspace 'Braintree.xcworkspace' -sdk 'iphonesimulator' -configuration 'Debug' -scheme 'UnitTests' -destination 'name=iPhone 14,OS=17.0,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify ui_test_job: name: UI - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Checkout repository uses: actions/checkout@v3 @@ -38,7 +38,7 @@ jobs: run: set -o pipefail && xcodebuild -workspace 'Braintree.xcworkspace' -sdk 'iphonesimulator' -configuration 'Release' -scheme 'UITests' -destination 'name=iPhone 14,OS=17.0,platform=iOS Simulator' test | ./Pods/xcbeautify/xcbeautify integration_test_job: name: Integration - runs-on: macOS-13-xlarge + runs-on: macOS-14-xlarge steps: - name: Checkout repository uses: actions/checkout@v3