diff --git a/.github/actions/select-xcode/action.yml b/.github/actions/select-xcode/action.yml index 0a2316a81..03bc75839 100644 --- a/.github/actions/select-xcode/action.yml +++ b/.github/actions/select-xcode/action.yml @@ -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 diff --git a/.github/workflows/add-pod-owner.yml b/.github/workflows/add-pod-owner.yml index 9e5552e91..515053320 100644 --- a/.github/workflows/add-pod-owner.yml +++ b/.github/workflows/add-pod-owner.yml @@ -12,7 +12,7 @@ permissions: jobs: add-owner: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - name: Add Owner diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 5b411e9a9..3fbbe9213 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -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 diff --git a/.github/workflows/create_release_candidate.yml b/.github/workflows/create_release_candidate.yml index 3ea0777c5..151a27ee4 100644 --- a/.github/workflows/create_release_candidate.yml +++ b/.github/workflows/create_release_candidate.yml @@ -17,7 +17,7 @@ permissions: jobs: update-version: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - name: Update Version diff --git a/.github/workflows/push_podspecs.yml b/.github/workflows/push_podspecs.yml index c51f25cbc..03870e074 100644 --- a/.github/workflows/push_podspecs.yml +++ b/.github/workflows/push_podspecs.yml @@ -9,7 +9,7 @@ permissions: jobs: push-podspecs: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - name: Bootstrap Project diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b2fa81d38..bc6c2d9b5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ permissions: jobs: run-tests: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - name: Bootstrap Project diff --git a/.github/workflows/upload-example-to-testflight.yml b/.github/workflows/upload-example-to-testflight.yml index abfd08931..1949f6985 100644 --- a/.github/workflows/upload-example-to-testflight.yml +++ b/.github/workflows/upload-example-to-testflight.yml @@ -15,7 +15,7 @@ permissions: jobs: export: - runs-on: macos-15 + runs-on: macos-26 steps: - uses: actions/checkout@v4 - name: Select Xcode Version diff --git a/Scripts/Tests/Destination.swift b/Scripts/Tests/Destination.swift index 141969ab2..4d9908900 100755 --- a/Scripts/Tests/Destination.swift +++ b/Scripts/Tests/Destination.swift @@ -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 }