Skip to content

Commit c5cf817

Browse files
committed
CI matrix updates mostly
1 parent 957339f commit c5cf817

4 files changed

Lines changed: 12 additions & 9 deletions

File tree

.github/workflows/codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
image: swift:5.10
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
11+
- uses: actions/checkout@v5
1212
- run: swift test --enable-test-discovery --enable-code-coverage
1313
- id: analysis
1414
uses: mattpolzin/swift-codecov-action@0.7.5

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
image: swift:5.10
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Build Docs
1818
run: |
1919
mkdir -p ./gh-pages

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,15 @@ jobs:
2222
- swift:6.0-focal
2323
- swift:6.0-jammy
2424
- swift:6.0-noble
25+
- swift:6.1-focal
26+
- swift:6.1-jammy
27+
- swift:6.1-noble
2528
- swiftlang/swift:nightly-focal
2629
- swiftlang/swift:nightly-jammy
2730
container: ${{ matrix.image }}
2831
steps:
2932
- name: Checkout code
30-
uses: actions/checkout@v4
33+
uses: actions/checkout@v5
3134
- name: Run tests
3235
run: swift test -Xswiftc -strict-concurrency=complete
3336
osx:
@@ -44,6 +47,6 @@ jobs:
4447
with:
4548
xcode-version: latest
4649
- name: Checkout code
47-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
4851
- name: Run tests
4952
run: swift test -Xswiftc -strict-concurrency=complete

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ A library containing Swift types that encode to- and decode from [OpenAPI 3.0.x]
88

99
OpenAPIKit follows semantic versioning despite the fact that the OpenAPI specificaiton does not. The following chart shows which OpenAPI specification versions and key features are supported by which OpenAPIKit versions.
1010

11-
| OpenAPIKit | Swift | OpenAPI v3.0 | OpenAPI v3.1 | External Dereferencing |
12-
|------------|-------|--------------|--------------|------------------------|
13-
| v2.x | 5.1+ || | |
14-
| v3.x | 5.1+ ||| |
15-
| v4.x | 5.8+ ||||
11+
| OpenAPIKit | Swift | OpenAPI v3.0 | OpenAPI v3.1 | External Dereferencing & Sendable |
12+
|------------|-------|--------------|--------------|-----------------------------------|
13+
| v2.x | 5.1+ || | |
14+
| v3.x | 5.1+ ||| |
15+
| v4.x | 5.8+ ||| |
1616

1717
- [Usage](#usage)
1818
- [Migration](#migration)

0 commit comments

Comments
 (0)