Skip to content

Commit c298a54

Browse files
ci: Use macos-15 and Xcode_26
1 parent 0207754 commit c298a54

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/continuous_integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
sonarcloud:
1212
name: Unit-Tests
13-
runs-on: macos-14
13+
runs-on: macos-15
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
run: brew link --overwrite swiftlint || brew install swiftlint
2626

2727
- name: Set up XCode
28-
run: sudo xcode-select --switch /Applications/Xcode_15.0.app
28+
run: sudo xcode-select --switch /Applications/Xcode_26.0.app
2929

3030
- name: Bundle Install
3131
run: bundle install

.github/workflows/prepare_release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616
jobs:
1717
build-and-release:
1818
if: github.ref == 'refs/heads/main'
19-
runs-on: macos-14
19+
runs-on: macos-15
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
@@ -25,7 +25,7 @@ jobs:
2525
run: brew link --overwrite swiftlint || brew install swiftlint
2626

2727
- name: Set up XCode
28-
run: sudo xcode-select --switch /Applications/Xcode_15.0.app
28+
run: sudo xcode-select --switch /Applications/Xcode_26.0.app
2929

3030
- name: Set up Ruby
3131
uses: ruby/setup-ruby@v1

.github/workflows/release_and_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
post-merge:
1111
if: contains(github.event.pull_request.labels.*.name, 'release') && github.event.pull_request.merged == true
12-
runs-on: macos-14
12+
runs-on: macos-15
1313

1414
steps:
1515
- name: Checkout Repository

fastlane/Fastfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ default_platform(:ios)
1818
platform :ios do
1919
desc "Lane to run the unit tests"
2020
lane :unit_tests do
21-
run_tests(scheme: "OSInAppBrowserLib",
21+
run_tests(device: "iPhone 17", scheme: "OSInAppBrowserLib",
2222
slack_url: ENV['SLACK_WEBHOOK'])
2323
end
2424

0 commit comments

Comments
 (0)