From c298a54f2d4ff510672b9a9402bdc8a29c463183 Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Fri, 2 Jan 2026 16:59:26 +0000 Subject: [PATCH 1/2] ci: Use macos-15 and Xcode_26 --- .github/workflows/continuous_integration.yml | 4 ++-- .github/workflows/prepare_release.yml | 4 ++-- .github/workflows/release_and_publish.yml | 2 +- fastlane/Fastfile | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 541a5f5..f58744e 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -10,7 +10,7 @@ on: jobs: sonarcloud: name: Unit-Tests - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout uses: actions/checkout@v4 @@ -25,7 +25,7 @@ jobs: run: brew link --overwrite swiftlint || brew install swiftlint - name: Set up XCode - run: sudo xcode-select --switch /Applications/Xcode_15.0.app + run: sudo xcode-select --switch /Applications/Xcode_26.0.app - name: Bundle Install run: bundle install diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index edecd2c..0bb0e48 100644 --- a/.github/workflows/prepare_release.yml +++ b/.github/workflows/prepare_release.yml @@ -16,7 +16,7 @@ on: jobs: build-and-release: if: github.ref == 'refs/heads/main' - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout uses: actions/checkout@v4 @@ -25,7 +25,7 @@ jobs: run: brew link --overwrite swiftlint || brew install swiftlint - name: Set up XCode - run: sudo xcode-select --switch /Applications/Xcode_15.0.app + run: sudo xcode-select --switch /Applications/Xcode_26.0.app - name: Set up Ruby uses: ruby/setup-ruby@v1 diff --git a/.github/workflows/release_and_publish.yml b/.github/workflows/release_and_publish.yml index 398321c..12122fb 100644 --- a/.github/workflows/release_and_publish.yml +++ b/.github/workflows/release_and_publish.yml @@ -9,7 +9,7 @@ on: jobs: post-merge: if: contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.merged == true - runs-on: macos-14 + runs-on: macos-15 steps: - name: Checkout Repository diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0bd62e7..249e5a8 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,7 +18,7 @@ default_platform(:ios) platform :ios do desc "Lane to run the unit tests" lane :unit_tests do - run_tests(scheme: "OSInAppBrowserLib", + run_tests(device: "iPhone 17", scheme: "OSInAppBrowserLib", slack_url: ENV['SLACK_WEBHOOK']) end From 52ce177643ac79db4819f94c8a2f68be312d40fd Mon Sep 17 00:00:00 2001 From: OS-pedrogustavobilro Date: Fri, 2 Jan 2026 16:59:51 +0000 Subject: [PATCH 2/2] chore: remove references to slack webhook --- .github/workflows/continuous_integration.yml | 2 -- fastlane/Fastfile | 3 +-- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index f58744e..f8047d5 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -32,8 +32,6 @@ jobs: - name: Unit tests run: bundle exec fastlane unit_tests - env: - SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} - name: Code Coverage run: bundle exec fastlane coverage diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 249e5a8..e15109c 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,8 +18,7 @@ default_platform(:ios) platform :ios do desc "Lane to run the unit tests" lane :unit_tests do - run_tests(device: "iPhone 17", scheme: "OSInAppBrowserLib", - slack_url: ENV['SLACK_WEBHOOK']) + run_tests(device: "iPhone 17", scheme: "OSInAppBrowserLib") end desc "Code coverage"