From 8fa28e667fdde4f47e443124731f4e504b77406f Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Mon, 29 Apr 2024 19:31:02 +0200 Subject: [PATCH 1/8] ci(GiniBankAPILibrary): Update Xcode version and add a manual trigger for the check workflow --- .github/workflows/bank-api-library.check.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bank-api-library.check.yml b/.github/workflows/bank-api-library.check.yml index 4cd056c15..63ab4bb45 100644 --- a/.github/workflows/bank-api-library.check.yml +++ b/.github/workflows/bank-api-library.check.yml @@ -12,7 +12,8 @@ on: secrets: GINI_MOBILE_TEST_CLIENT_SECRET: required: true - + workflow_dispatch: + jobs: check: runs-on: macos-latest @@ -23,7 +24,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 From bfe93309fa09d3c16f8e572c7660761b429678ae Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 10:41:06 +0200 Subject: [PATCH 2/8] ci(GiniBankAPILibrary): Update iOS simulator for Xcode 14.3.1 --- .github/workflows/bank-api-library.check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bank-api-library.check.yml b/.github/workflows/bank-api-library.check.yml index 63ab4bb45..736c429e0 100644 --- a/.github/workflows/bank-api-library.check.yml +++ b/.github/workflows/bank-api-library.check.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: target: [GiniBankAPILibrary, GiniBankAPILibraryPinning] - destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone 13', 'platform=iOS Simulator,OS=17.2,name=iPhone 11'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: From 314db7e623b89aa50ada7cb3d4ee16bd2e28cc72 Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 10:48:20 +0200 Subject: [PATCH 3/8] ci(GiniBankAPILibrary): Update simulator devices for Xcode 14.3.1 --- .github/workflows/bank-api-library.check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/bank-api-library.check.yml b/.github/workflows/bank-api-library.check.yml index 736c429e0..d40ead309 100644 --- a/.github/workflows/bank-api-library.check.yml +++ b/.github/workflows/bank-api-library.check.yml @@ -20,7 +20,7 @@ jobs: strategy: matrix: target: [GiniBankAPILibrary, GiniBankAPILibraryPinning] - destination: ['platform=iOS Simulator,OS=16.4,name=iPhone 13', 'platform=iOS Simulator,OS=17.2,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: From 904980c0b9715188da9756cf9c726a2e89c0173b Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 11:02:10 +0200 Subject: [PATCH 4/8] ci(GiniBankAPILibrary): Update Xcode 14.3.1, remove linking old simulators -since it's not supported anymore --- .github/workflows/bank-api-library.build.docs.yml | 2 +- .github/workflows/bank-api-library.check.yml | 8 -------- .github/workflows/bank-api-library.release.yml | 2 +- 3 files changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/bank-api-library.build.docs.yml b/.github/workflows/bank-api-library.build.docs.yml index 2eac36930..9bd9782ee 100644 --- a/.github/workflows/bank-api-library.build.docs.yml +++ b/.github/workflows/bank-api-library.build.docs.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/bank-api-library.check.yml b/.github/workflows/bank-api-library.check.yml index d40ead309..7248dd122 100644 --- a/.github/workflows/bank-api-library.check.yml +++ b/.github/workflows/bank-api-library.check.yml @@ -39,14 +39,6 @@ jobs: cd BankAPILibrary/GiniBankAPILibraryPinning swift package update - - name: Link to 15.0 Simulators - if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11' - run: | - echo "Creating Runtimes folder if needed..." - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - echo "Creating symlink of the iOS 15.0 runtime..." - sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime - - name: Build sdk targets run: | xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO diff --git a/.github/workflows/bank-api-library.release.yml b/.github/workflows/bank-api-library.release.yml index 07262d9ce..288b2585a 100644 --- a/.github/workflows/bank-api-library.release.yml +++ b/.github/workflows/bank-api-library.release.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 From bc8a4fa13ea65c4e45a1ec847ba0a937a733ea88 Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 11:46:32 +0200 Subject: [PATCH 5/8] ci(GiniBankSDK): Update Xcode 14.3.1, update testing simulators, remove linking old simulators -since it's not supported anymore --- .github/workflows/bank-sdk.build.docs.yml | 2 +- .github/workflows/bank-sdk.check.yml | 15 ++++----------- .github/workflows/bank-sdk.publish.docs.yml | 2 +- .../workflows/bank-sdk.publish.example.app.yml | 2 +- .github/workflows/bank-sdk.release.yml | 2 +- 5 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/workflows/bank-sdk.build.docs.yml b/.github/workflows/bank-sdk.build.docs.yml index b834eaa5a..c74920713 100644 --- a/.github/workflows/bank-sdk.build.docs.yml +++ b/.github/workflows/bank-sdk.build.docs.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/bank-sdk.check.yml b/.github/workflows/bank-sdk.check.yml index 8073725ab..15f0f08d2 100644 --- a/.github/workflows/bank-sdk.check.yml +++ b/.github/workflows/bank-sdk.check.yml @@ -16,18 +16,19 @@ on: secrets: GINI_MOBILE_TEST_CLIENT_SECRET: required: true - + workflow_dispatch: + jobs: check: runs-on: macos-latest strategy: matrix: target: [GiniBankSDK, GiniBankSDKPinning] - destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 @@ -42,14 +43,6 @@ jobs: cd BankSDK/GiniBankSDKPinning swift package update - - name: Link to 15.0 Simulators - if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11' - run: | - echo "Creating Runtimes folder if needed..." - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - echo "Creating symlink of the iOS 15.0 runtime..." - sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime - - name: Build sdk targets run: | xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO diff --git a/.github/workflows/bank-sdk.publish.docs.yml b/.github/workflows/bank-sdk.publish.docs.yml index 73e693ffe..2c59c9c80 100644 --- a/.github/workflows/bank-sdk.publish.docs.yml +++ b/.github/workflows/bank-sdk.publish.docs.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/bank-sdk.publish.example.app.yml b/.github/workflows/bank-sdk.publish.example.app.yml index f499574f3..bfb02a507 100644 --- a/.github/workflows/bank-sdk.publish.example.app.yml +++ b/.github/workflows/bank-sdk.publish.example.app.yml @@ -20,7 +20,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Setup provisioning profile env: diff --git a/.github/workflows/bank-sdk.release.yml b/.github/workflows/bank-sdk.release.yml index 503fca13e..7d0a54f0c 100644 --- a/.github/workflows/bank-sdk.release.yml +++ b/.github/workflows/bank-sdk.release.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 From 0ba93211f7c4adcc5529975902763a857249a68f Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 11:51:55 +0200 Subject: [PATCH 6/8] ci(GiniCaptureSDK): Update Xcode 14.3.1, update testing simulators, remove linking old simulators -since it's not supported anymore, add manual trigger for check workflow. --- .github/workflows/capture-sdk.build.docs.yml | 2 +- .github/workflows/capture-sdk.check.yml | 14 ++++---------- .github/workflows/capture-sdk.publish.docs.yml | 2 +- .github/workflows/capture-sdk.release.yml | 4 ++-- 4 files changed, 8 insertions(+), 14 deletions(-) diff --git a/.github/workflows/capture-sdk.build.docs.yml b/.github/workflows/capture-sdk.build.docs.yml index 32bb7f185..a03a7ad8d 100644 --- a/.github/workflows/capture-sdk.build.docs.yml +++ b/.github/workflows/capture-sdk.build.docs.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/capture-sdk.check.yml b/.github/workflows/capture-sdk.check.yml index 5526388de..b7446e4a4 100644 --- a/.github/workflows/capture-sdk.check.yml +++ b/.github/workflows/capture-sdk.check.yml @@ -14,6 +14,8 @@ on: secrets: GINI_MOBILE_TEST_CLIENT_SECRET: required: true + workflow_dispatch: + jobs: check: @@ -21,11 +23,11 @@ jobs: strategy: matrix: target: [GiniCaptureSDK, GiniCaptureSDKPinning] - destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 @@ -40,14 +42,6 @@ jobs: cd CaptureSDK/GiniCaptureSDKPinning swift package update - - name: Link to 15.0 Simulators - if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11' - run: | - echo "Creating Runtimes folder if needed..." - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - echo "Creating symlink of the iOS 15.0 runtime..." - sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime - - name: Build sdk targets run: | xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO diff --git a/.github/workflows/capture-sdk.publish.docs.yml b/.github/workflows/capture-sdk.publish.docs.yml index 62d1e94b2..2daa50249 100644 --- a/.github/workflows/capture-sdk.publish.docs.yml +++ b/.github/workflows/capture-sdk.publish.docs.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/capture-sdk.release.yml b/.github/workflows/capture-sdk.release.yml index f4adc95df..56516a843 100644 --- a/.github/workflows/capture-sdk.release.yml +++ b/.github/workflows/capture-sdk.release.yml @@ -15,9 +15,9 @@ jobs: needs: check runs-on: macos-latest steps: - - uses: maxim-lobanov/setup-xcode@v1 + - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 From 9006d6da3c9fd464c7e344dc0504fdc98b33969e Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 11:57:08 +0200 Subject: [PATCH 7/8] ci(GiniHealthAPILibrary): Update Xcode 14.3.1, update testing simulators, remove linking old simulators - since it's not supported anymore, add manual trigger for check workflow. --- .../workflows/health-api-library.build.docs.yml | 2 +- .github/workflows/health-api-library.check.yml | 15 ++++----------- .../workflows/health-api-library.publish.docs.yml | 2 +- .github/workflows/health-api-library.release.yml | 2 +- 4 files changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/health-api-library.build.docs.yml b/.github/workflows/health-api-library.build.docs.yml index 571172820..7a3a40eec 100644 --- a/.github/workflows/health-api-library.build.docs.yml +++ b/.github/workflows/health-api-library.build.docs.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/health-api-library.check.yml b/.github/workflows/health-api-library.check.yml index b347cc00b..4ed364353 100644 --- a/.github/workflows/health-api-library.check.yml +++ b/.github/workflows/health-api-library.check.yml @@ -12,18 +12,19 @@ on: secrets: GINI_MOBILE_TEST_CLIENT_SECRET: required: true - + workflow_dispatch: + jobs: check: runs-on: macos-latest strategy: matrix: target: [GiniHealthAPILibrary, GiniHealthAPILibraryPinning] - destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 @@ -38,14 +39,6 @@ jobs: cd HealthAPILibrary/GiniHealthAPILibraryPinning swift package update - - name: Link to 15.0 Simulators - if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11' - run: | - echo "Creating Runtimes folder if needed..." - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - echo "Creating symlink of the iOS 15.0 runtime..." - sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime - - name: Build sdk targets run: | xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO diff --git a/.github/workflows/health-api-library.publish.docs.yml b/.github/workflows/health-api-library.publish.docs.yml index 4cc0465ee..6619c92d6 100644 --- a/.github/workflows/health-api-library.publish.docs.yml +++ b/.github/workflows/health-api-library.publish.docs.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/health-api-library.release.yml b/.github/workflows/health-api-library.release.yml index e969d8f04..7c8d1b1b6 100644 --- a/.github/workflows/health-api-library.release.yml +++ b/.github/workflows/health-api-library.release.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 From 9ca2527ec7a0152a4ca073e71d9b48c2b67adee7 Mon Sep 17 00:00:00 2001 From: Nadya Karaban Date: Tue, 30 Apr 2024 11:58:57 +0200 Subject: [PATCH 8/8] ci(GiniHealthSDK): Update Xcode 14.3.1, update testing simulators, remove linking old simulators - since it's not supported anymore, add manual trigger for check workflow --- .github/workflows/health-sdk.build.docs.yml | 2 +- .github/workflows/health-sdk.check.yml | 15 ++++----------- .github/workflows/health-sdk.publish.docs.yml | 2 +- .../workflows/health-sdk.publish.example.apps.yml | 2 +- .github/workflows/health-sdk.release.yml | 2 +- 5 files changed, 8 insertions(+), 15 deletions(-) diff --git a/.github/workflows/health-sdk.build.docs.yml b/.github/workflows/health-sdk.build.docs.yml index a5f49c967..a251e3eb3 100644 --- a/.github/workflows/health-sdk.build.docs.yml +++ b/.github/workflows/health-sdk.build.docs.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/health-sdk.check.yml b/.github/workflows/health-sdk.check.yml index 8f08feae6..78da2ae1e 100644 --- a/.github/workflows/health-sdk.check.yml +++ b/.github/workflows/health-sdk.check.yml @@ -14,18 +14,19 @@ on: secrets: GINI_MOBILE_TEST_CLIENT_SECRET: required: true - + workflow_dispatch: + jobs: check: runs-on: macos-latest strategy: matrix: target: [GiniHealthSDK, GiniHealthSDKPinning] - destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] + destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 @@ -40,14 +41,6 @@ jobs: cd HealthSDK/GiniHealthSDKPinning swift package update - - name: Link to 15.0 Simulators - if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11' - run: | - echo "Creating Runtimes folder if needed..." - sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes - echo "Creating symlink of the iOS 15.0 runtime..." - sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime - - name: Build sdk targets run: | xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO diff --git a/.github/workflows/health-sdk.publish.docs.yml b/.github/workflows/health-sdk.publish.docs.yml index 5a1d0e019..2c8cf3b0a 100644 --- a/.github/workflows/health-sdk.publish.docs.yml +++ b/.github/workflows/health-sdk.publish.docs.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3 diff --git a/.github/workflows/health-sdk.publish.example.apps.yml b/.github/workflows/health-sdk.publish.example.apps.yml index 74650a637..75c22b85f 100644 --- a/.github/workflows/health-sdk.publish.example.apps.yml +++ b/.github/workflows/health-sdk.publish.example.apps.yml @@ -20,7 +20,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Setup provisioning profile env: diff --git a/.github/workflows/health-sdk.release.yml b/.github/workflows/health-sdk.release.yml index 18e835d3e..7a2d55599 100644 --- a/.github/workflows/health-sdk.release.yml +++ b/.github/workflows/health-sdk.release.yml @@ -16,7 +16,7 @@ jobs: steps: - uses: maxim-lobanov/setup-xcode@v1.5.1 with: - xcode-version: '14.2' + xcode-version: '14.3.1' - name: Checkout uses: actions/checkout@v3