Skip to content

Commit 1fb35e0

Browse files
authored
Use Xcode 15 on CI (#199)
1 parent 487729e commit 1fb35e0

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/main.yml

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: CI
2+
23
on:
34
pull_request:
45
types:
@@ -9,12 +10,12 @@ permissions: {}
910

1011
concurrency:
1112
group: ${{ github.workflow }}-${{ github.ref }}
12-
cancel-in-progress: true
13+
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
1314

1415
jobs:
1516
test:
1617
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
17-
runs-on: macos-latest
18+
runs-on: macos-13
1819

1920
env:
2021
xcodeproj: SimpleKeychain.xcodeproj
@@ -26,7 +27,7 @@ jobs:
2627
- { os: macOS, scheme: SimpleKeychain-macOS }
2728
- { os: tvOS, scheme: SimpleKeychain-tvOS }
2829
xcode:
29-
- '14.2'
30+
- '15.0.1'
3031

3132
steps:
3233
- name: Checkout
@@ -54,12 +55,12 @@ jobs:
5455

5556
test-package:
5657
name: Test Swift package using Xcode ${{ matrix.xcode }}
57-
runs-on: macos-latest
58+
runs-on: macos-13
5859

5960
strategy:
6061
matrix:
6162
xcode:
62-
- '14.2'
63+
- '15.0.1'
6364

6465
steps:
6566
- name: Checkout
@@ -75,12 +76,12 @@ jobs:
7576

7677
pod-lint:
7778
name: Lint podspec using Xcode ${{ matrix.xcode }}
78-
runs-on: macos-latest
79+
runs-on: macos-13
7980

8081
strategy:
8182
matrix:
8283
xcode:
83-
- '14.2'
84+
- '15.0.1'
8485

8586
steps:
8687
- name: Checkout
@@ -96,7 +97,7 @@ jobs:
9697

9798
swiftlint:
9899
name: Lint code with SwiftLint
99-
runs-on: macos-latest
100+
runs-on: macos-13
100101

101102
steps:
102103
- name: Checkout

0 commit comments

Comments
 (0)