Skip to content
Merged
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
17 changes: 10 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
needs: authorize # Require approval before running on forked pull requests
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }}
environment: ${{ github.event.pull_request.head.repo.fork && 'external' || 'internal' }}
runs-on: macos-13
runs-on: macos-14

env:
xcodeproj: SimpleKeychain.xcodeproj
Expand All @@ -39,7 +39,7 @@ jobs:
- { os: macOS, scheme: SimpleKeychain-macOS }
- { os: tvOS, scheme: SimpleKeychain-tvOS }
xcode:
- '15.0.1'
- '16.1'

steps:
- name: Checkout
Expand Down Expand Up @@ -70,12 +70,12 @@ jobs:

test-package:
name: Test Swift package using Xcode ${{ matrix.xcode }}
runs-on: macos-13
runs-on: macos-14

strategy:
matrix:
xcode:
- '15.0.1'
- '16.1'

steps:
- name: Checkout
Expand All @@ -92,12 +92,12 @@ jobs:

pod-lint:
name: Lint podspec using Xcode ${{ matrix.xcode }}
runs-on: macos-13-xlarge
runs-on: macos-14-xlarge

strategy:
matrix:
xcode:
- '15.2'
- '16.1'

steps:
- name: Checkout
Expand All @@ -114,11 +114,14 @@ jobs:

swiftlint:
name: Lint code with SwiftLint
runs-on: macos-13
runs-on: macos-14

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install SwiftLint
run: brew install swiftlint

- name: Run SwiftLint
run: swiftlint lint --reporter github-actions-logging
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:5.9
// swift-tools-version:6.0
import PackageDescription

let package = Package(
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ Migrating from 0.x? Check the [Migration Guide](V1_MIGRATION_GUIDE.md).
### Requirements

- iOS 14.0+ / macOS 11.0+ / tvOS 14.0+ / watchOS 7.0+
- Xcode 15.x
- Swift 5.9+
- Xcode 16.x
- Swift 6.0+

> [!IMPORTANT]
> Check the [Support Policy](#support-policy) to learn when dropping Xcode, Swift, and platform versions will not be considered a **breaking change**.
Expand Down
2 changes: 1 addition & 1 deletion SimpleKeychain.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ Pod::Spec.new do |s|
s.visionos.deployment_target = '1.0'

s.source_files = 'SimpleKeychain/*.swift'
s.swift_versions = ['5.9']
s.swift_versions = ['6.0', '6.1']
end
Loading