From 8fc41743babc8fc3a675447b35202ad1e3dde23d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Dec 2025 03:08:35 +0000 Subject: [PATCH 1/2] Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/android-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android-publish.yaml b/.github/workflows/android-publish.yaml index 7115753..1eb91a9 100644 --- a/.github/workflows/android-publish.yaml +++ b/.github/workflows/android-publish.yaml @@ -27,7 +27,7 @@ jobs: cache-encryption-key: ${{ secrets.GRADLE_CACHE_ENCRYPTION_KEY }} - name: Cache KMP tooling - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.konan From 7b71f03142bcacfe14d29f8413efaa4c70e9e6d8 Mon Sep 17 00:00:00 2001 From: Andrei Beriukhov Date: Thu, 5 Mar 2026 15:39:24 +0200 Subject: [PATCH 2/2] fix ios destination in ci --- .github/workflows/ios.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml index 1bcd785..6ca5bb3 100644 --- a/.github/workflows/ios.yml +++ b/.github/workflows/ios.yml @@ -35,4 +35,4 @@ jobs: cd cmp-iosApp pod install --verbose - name: Build iOS - run: xcodebuild build -workspace cmp-iosApp/iosApp.xcworkspace -configuration Debug -scheme iosApp -sdk iphoneos -destination name='iPhone 16' -verbose + run: xcodebuild build -workspace cmp-iosApp/iosApp.xcworkspace -configuration Debug -scheme iosApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -verbose