From c5a31f8483bc2867ac97a0eedbbb51e730b46a63 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Fri, 29 Aug 2025 14:12:24 +0530 Subject: [PATCH 1/2] Update CI configuration to use the latest Xcode version and resolve dependencies to specific versions --- .github/workflows/ci.yml | 5 ++--- Cartfile.resolved | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a4b32ca..866cab6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: - name: Set up Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '15.4.0' + xcode-version: latest - name: Create config file run: | @@ -77,8 +77,7 @@ jobs: - name: Set up Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '15.4.0' - + xcode-version: latest - name: Create config file run: | echo '{ diff --git a/Cartfile.resolved b/Cartfile.resolved index a6fdcb93..00080860 100644 --- a/Cartfile.resolved +++ b/Cartfile.resolved @@ -1,2 +1,2 @@ -github "contentstack/contentstack-swift-dvr" "c8040a2451e4bc2c312347531cac6c73f23ce50c" +github "contentstack/contentstack-swift-dvr" "v1.0.0" github "contentstack/contentstack-utils-swift" "v1.3.4" From 82961a773402559cfc6511be4895948f21787780 Mon Sep 17 00:00:00 2001 From: reeshika-h Date: Fri, 29 Aug 2025 14:29:37 +0530 Subject: [PATCH 2/2] Remove unused flag from Carthage bootstrap command for iOS --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 866cab6b..b6a2c351 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -69,7 +69,7 @@ jobs: - name: Install dep via Carthage run: | - carthage bootstrap --platform iOS --use-xcframeworks --cache-builds + carthage bootstrap --platform iOS --cache-builds - name: Install dependencies via Swift Package Manager run: swift package resolve