Skip to content

Commit c1091f4

Browse files
authored
Add support for Swift 6 (#636)
* Raise deployment target to 14.0 * Update to Pageboy 5 * Update usage of scrollIndicatorInsets * Add MainActor annotations * Update project settings * Fix tests * Bump version number 4.0.0 * Remove Cartfile * Remove pod support * Update CI image * Update Package.swift * Update Pageboy to 5.0.1 * Remove CocoaPods gem * Update README * Update gems
1 parent 3b22132 commit c1091f4

39 files changed

+254
-232
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,13 @@ on:
33
push:
44
pull_request:
55
branches-ignore:
6-
- 'gh-pages'
6+
- "gh-pages"
77

88
jobs:
99
Test:
10-
runs-on: macOS-14
10+
runs-on: macOS-latest
1111
steps:
12+
- uses: actions/checkout@v2
1213
- uses: maxim-lobanov/setup-xcode@v1
1314
with:
1415
xcode-version: latest-stable

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ on:
66

77
jobs:
88
publish:
9-
runs-on: macOS-14
9+
runs-on: macOS-latest
1010
steps:
11+
- uses: actions/checkout@v2
1112
- uses: maxim-lobanov/setup-xcode@v1
1213
with:
1314
xcode-version: latest-stable

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ name: Publish
22
on:
33
push:
44
tags:
5-
- '*'
5+
- "*"
66

77
jobs:
88
publish_release:
9-
runs-on: macOS-14
9+
runs-on: macOS-latest
1010
steps:
11+
- uses: actions/checkout@v2
1112
- uses: maxim-lobanov/setup-xcode@v1
1213
with:
1314
xcode-version: latest-stable
14-
- uses: actions/checkout@v2
1515
- name: Prepare
1616
run: |
1717
bundle update --bundler

Cartfile

Lines changed: 0 additions & 1 deletion
This file was deleted.

Gemfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
source 'https://rubygems.org'
33

44
gem 'fastlane'
5-
gem 'cocoapods'
65
gem 'danger'
76
gem 'danger-swiftlint'
87
gem 'jazzy'

0 commit comments

Comments
 (0)