diff --git a/.github/workflows/prepare_release.yml b/.github/workflows/prepare_release.yml index 50fa55e..b79e437 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 (minmum support version) - 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 da3b74c..8d3f742 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 daa3726..3e91933 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -18,10 +18,7 @@ default_platform(:ios) platform :ios do desc "Lane to run the unit tests" lane :unit_tests do - run_tests( - scheme: "IONFileViewerLib", - destination: "platform=iOS Simulator,name=iPhone 17,OS=26.0" - ) + run_tests(device: "iPhone 17", scheme: "IONFileViewerLib") end desc "Code coverage"