From 2a5caba1a287927be56abfd76d4074b92edb9a1d Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 14:44:01 +0000 Subject: [PATCH 1/2] Update dependency macos to v26 --- .github/workflows/pr-checks.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-checks.yaml b/.github/workflows/pr-checks.yaml index bc98daea..61529f5e 100644 --- a/.github/workflows/pr-checks.yaml +++ b/.github/workflows/pr-checks.yaml @@ -156,7 +156,7 @@ jobs: build-ios-sample: name: Build iOS Sample - runs-on: macos-15 + runs-on: macos-26 needs: [test] steps: - uses: actions/checkout@v7 @@ -234,7 +234,7 @@ jobs: build-tvos-sample: name: Build tvOS Sample - runs-on: macos-15 + runs-on: macos-26 needs: [test] steps: - uses: actions/checkout@v7 @@ -274,7 +274,7 @@ jobs: build-watchOS-sample: name: Build watchOS Sample - runs-on: macos-15 + runs-on: macos-26 needs: [test] steps: - uses: actions/checkout@v7 From 3d5788762b1c6d264fc55eec708d9dc7eff0e135 Mon Sep 17 00:00:00 2001 From: Marco Gomiero Date: Sun, 28 Jun 2026 08:49:53 -0700 Subject: [PATCH 2/2] Use Xcode 26.5 on macOS 26 sample jobs --- .github/workflows/pr-checks.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-checks.yaml b/.github/workflows/pr-checks.yaml index 61529f5e..e4c9038d 100644 --- a/.github/workflows/pr-checks.yaml +++ b/.github/workflows/pr-checks.yaml @@ -173,7 +173,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: 16.4 + xcode-version: 26.5 - name: Xcode version run: | @@ -188,7 +188,7 @@ jobs: with: path: | ~/.konan - key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }} + key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }} - name: Build iOS Sample run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -configuration Debug -scheme iosApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' build | xcbeautify --renderer github-actions @@ -251,7 +251,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: 16.4 + xcode-version: 26.5 - name: Xcode version run: | @@ -266,7 +266,7 @@ jobs: with: path: | ~/.konan - key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }} + key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }} - name: Build tvOS Sample run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -configuration Debug -scheme 'iosApp' -destination 'generic/platform=tvOS Simulator' ARCHS=arm64 ONLY_ACTIVE_ARCH=YES build | xcbeautify --renderer github-actions @@ -291,7 +291,7 @@ jobs: - uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: 16.4 + xcode-version: 26.5 - name: Xcode version run: | @@ -306,7 +306,7 @@ jobs: with: path: | ~/.konan - key: ${{ runner.os }}-xcode-16.4-v1-${{ hashFiles('**/libs.versions.toml') }} + key: ${{ runner.os }}-xcode-26.5-v1-${{ hashFiles('**/libs.versions.toml') }} - name: Build watchOS Sample run: set -o pipefail && xcodebuild -project samples/multiplatform/iosApp/iosApp.xcodeproj -scheme 'RssParserDemo Watch App' -destination 'generic/platform=watchOS Simulator' -configuration Debug ARCHS=arm64 ONLY_ACTIVE_ARCH=YES CODE_SIGNING_ALLOWED=NO build | xcbeautify --renderer github-actions