Skip to content

Commit 0250f93

Browse files
authored
Xcode 26 (#133)
1 parent 28d5cfe commit 0250f93

File tree

4 files changed

+4
-18
lines changed

4 files changed

+4
-18
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,14 @@ jobs:
1717
# Only run this action if the PR isn't a draft and it is labled as a `security` PR
1818
if: github.event.pull_request.draft == false && contains(github.event.pull_request.labels.*.name, 'security')
1919

20-
env:
21-
XCODE_VERSION: 'Xcode_16.4'
22-
2320
name: Analyze (${{ matrix.language }})
2421
# Runner size impacts CodeQL analysis time. To learn more, please see:
2522
# - https://gh.io/recommended-hardware-resources-for-running-codeql
2623
# - https://gh.io/supported-runners-and-hardware-resources
2724
# - https://gh.io/using-larger-runners (GitHub.com only)
2825
# Consider using larger runners or machines with greater resources for possible analysis time improvements.
2926

30-
runs-on: macos-15
27+
runs-on: macos-26
3128
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
3229
permissions:
3330
# required for all workflows
@@ -50,8 +47,6 @@ jobs:
5047
steps:
5148
- name: Checkout repository
5249
uses: actions/checkout@v4
53-
- name: Select Xcode
54-
run: sudo xcode-select -s "/Applications/$XCODE_VERSION.app"
5550
- name: Initialize CodeQL
5651
uses: github/codeql-action/init@v3
5752
with:

.github/workflows/docc.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,15 @@ jobs:
2222
# Single deploy job since we're just deploying
2323
docc:
2424

25-
env:
26-
XCODE_VERSION: 'Xcode_16.4'
27-
2825
environment:
2926
# Must be set to this for deploying to GitHub Pages
3027
name: github-pages
3128
url: ${{steps.deployment.outputs.page_url}}
3229

33-
runs-on: macos-15
30+
runs-on: macos-26
3431

3532
steps:
3633
- uses: actions/checkout@v4
37-
- name: Select Xcode
38-
run: sudo xcode-select -s "/Applications/$XCODE_VERSION.app"
3934
- name: Add Plugin Dependency
4035
run: swift package add-dependency "https://github.com/apple/swift-docc-plugin" --branch main
4136
- name: Generate Documentation

.github/workflows/swift.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,10 @@ jobs:
1313

1414
build:
1515

16-
env:
17-
XCODE_VERSION: 'Xcode_16.4'
18-
runs-on: macos-15
16+
runs-on: macos-26
1917

2018
steps:
2119
- uses: actions/checkout@v4
22-
- name: Select Xcode
23-
run: sudo xcode-select -s "/Applications/$XCODE_VERSION.app"
2420
- name: Install SwiftLint
2521
run: brew install swiftlint
2622
- name: Lint

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
![Build](https://github.com/codefiesta/OAuthKit/actions/workflows/swift.yml/badge.svg)
2-
![Xcode 16.4+](https://img.shields.io/badge/Xcode-16.4%2B-gold.svg)
2+
![Xcode 26.0+](https://img.shields.io/badge/Xcode-26.0%2B-gold.svg)
33
![Swift 6.1+](https://img.shields.io/badge/Swift-6.1%2B-tomato.svg)
44
![iOS 18.0+](https://img.shields.io/badge/iOS-18.0%2B-crimson.svg)
55
![macOS 15.0+](https://img.shields.io/badge/macOS-15.0%2B-skyblue.svg)

0 commit comments

Comments
 (0)