Skip to content

Commit 0816f99

Browse files
feat(ad-hoc): update GitHub actions runner (#514)
1 parent 0f1b446 commit 0816f99

8 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/actions/select-xcode/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ runs:
44
using: "composite"
55
steps:
66
- name: Select Xcode Version
7-
run: sudo xcode-select -s '/Applications/Xcode_16.4.app'
7+
run: sudo xcode-select -s '/Applications/Xcode_26.2.0.app'
88
shell: bash

.github/workflows/add-pod-owner.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
add-owner:
15-
runs-on: macos-15
15+
runs-on: macos-26
1616
steps:
1717
- uses: actions/checkout@v4
1818
- name: Add Owner

.github/workflows/create_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ permissions:
88
jobs:
99
create-release:
1010
name: Create Release
11-
runs-on: macos-15
11+
runs-on: macos-26
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v4

.github/workflows/create_release_candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717

1818
jobs:
1919
update-version:
20-
runs-on: macos-15
20+
runs-on: macos-26
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: Update Version

.github/workflows/push_podspecs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions:
99

1010
jobs:
1111
push-podspecs:
12-
runs-on: macos-15
12+
runs-on: macos-26
1313
steps:
1414
- uses: actions/checkout@v4
1515
- name: Bootstrap Project

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616

1717
jobs:
1818
run-tests:
19-
runs-on: macos-15
19+
runs-on: macos-26
2020
steps:
2121
- uses: actions/checkout@v4
2222
- name: Bootstrap Project

.github/workflows/upload-example-to-testflight.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ permissions:
1515

1616
jobs:
1717
export:
18-
runs-on: macos-15
18+
runs-on: macos-26
1919
steps:
2020
- uses: actions/checkout@v4
2121
- name: Select Xcode Version

Scripts/Tests/Destination.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ try FileHandle.standardOutput.write(contentsOf: destination)
1414
func supportedDeviceId(attempt: Int = 0) throws -> String? {
1515
let devices = try devices()
1616
let supportedDevices = try runtimes()
17-
.filter { $0.version.starts(with: "18") && $0.platform == "iOS" }
17+
.filter { $0.version.starts(with: "26") && $0.platform == "iOS" }
1818
.compactMap { devices[$0.identifier] }
1919
.flatMap { $0 }
2020
.filter { $0.name.starts(with: "iPhone") && $0.isAvailable }

0 commit comments

Comments
 (0)