Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/select-xcode/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ runs:
using: "composite"
steps:
- name: Select Xcode Version
run: sudo xcode-select -s '/Applications/Xcode_16.4.app'
run: sudo xcode-select -s '/Applications/Xcode_26.2.0.app'
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/add-pod-owner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

jobs:
add-owner:
runs-on: macos-15
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Add Owner
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ permissions:
jobs:
create-release:
name: Create Release
runs-on: macos-15
runs-on: macos-26
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create_release_candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:

jobs:
update-version:
runs-on: macos-15
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Update Version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_podspecs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:

jobs:
push-podspecs:
runs-on: macos-15
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Bootstrap Project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
run-tests:
runs-on: macos-15
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Bootstrap Project
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upload-example-to-testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
export:
runs-on: macos-15
runs-on: macos-26
steps:
- uses: actions/checkout@v4
- name: Select Xcode Version
Expand Down
2 changes: 1 addition & 1 deletion Scripts/Tests/Destination.swift
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ try FileHandle.standardOutput.write(contentsOf: destination)
func supportedDeviceId(attempt: Int = 0) throws -> String? {
let devices = try devices()
let supportedDevices = try runtimes()
.filter { $0.version.starts(with: "18") && $0.platform == "iOS" }
.filter { $0.version.starts(with: "26") && $0.platform == "iOS" }
.compactMap { devices[$0.identifier] }
.flatMap { $0 }
.filter { $0.name.starts(with: "iPhone") && $0.isAvailable }
Expand Down