Skip to content

Commit de48704

Browse files
authored
Update dependencies and minimum Swift version (#10)
1 parent aa1bcc3 commit de48704

File tree

3 files changed

+15
-16
lines changed

3 files changed

+15
-16
lines changed

Diff for: .github/workflows/ci.yml

+9-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI
1+
name: ci
22

33
on:
44
push:
@@ -17,7 +17,7 @@ concurrency:
1717
jobs:
1818
macOS:
1919
name: ${{ matrix.platform }} (Swift ${{ matrix.swift }})
20-
runs-on: macos-12
20+
runs-on: macos-13
2121
strategy:
2222
fail-fast: false
2323
matrix:
@@ -27,28 +27,27 @@ jobs:
2727
- tvOS
2828
- watchOS
2929
swift:
30-
- 5.5
31-
- 5.6
3230
- 5.7
31+
- 5.8
32+
- 5.9
3333
steps:
34-
- uses: actions/checkout@v2
35-
- uses: mxcl/xcodebuild@v1
34+
- uses: actions/checkout@v3
35+
- uses: mxcl/xcodebuild@v2
3636
with:
3737
platform: ${{ matrix.platform }}
3838
swift: ~${{ matrix.swift }}
39-
warnings-as-errors: true
4039
linux:
4140
name: Linux (Swift ${{ matrix.swift }})
4241
runs-on: ubuntu-latest
4342
strategy:
4443
fail-fast: false
4544
matrix:
4645
swift:
47-
- 5.5
48-
- 5.6
4946
- 5.7
47+
- 5.8
48+
# - 5.9
5049
container:
5150
image: swift:${{ matrix.swift }}
5251
steps:
53-
- uses: actions/checkout@v2
52+
- uses: actions/checkout@v3
5453
- run: swift test --parallel -Xswiftc -warnings-as-errors

Diff for: Package.resolved

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
"repositoryURL": "https://github.com/pointfreeco/swift-custom-dump",
77
"state": {
88
"branch": null,
9-
"revision": "c4f78db9b90ca57b7b6abc2223e235242739ea3c",
10-
"version": "0.4.0"
9+
"revision": "edd66cace818e1b1c6f1b3349bb1d8e00d6f8b01",
10+
"version": "1.0.0"
1111
}
1212
},
1313
{
1414
"package": "xctest-dynamic-overlay",
1515
"repositoryURL": "https://github.com/pointfreeco/xctest-dynamic-overlay",
1616
"state": {
1717
"branch": null,
18-
"revision": "50a70a9d3583fe228ce672e8923010c8df2deddd",
19-
"version": "0.2.1"
18+
"revision": "23cbf2294e350076ea4dbd7d5d047c1e76b03631",
19+
"version": "1.0.2"
2020
}
2121
}
2222
]

Diff for: Package.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// swift-tools-version:5.5
1+
// swift-tools-version:5.7
22
// The swift-tools-version declares the minimum version of Swift required to build this package.
33

44
import PackageDescription
@@ -26,5 +26,5 @@ let package = Package(
2626
)
2727

2828
package.dependencies = [
29-
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "0.2.0"),
29+
.package(url: "https://github.com/pointfreeco/swift-custom-dump", from: "1.0.0"),
3030
]

0 commit comments

Comments
 (0)