Skip to content

Commit

Permalink
remove: swift 5.7 and 5.8 support on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mflknr committed May 9, 2024
1 parent 545b349 commit 2367930
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
strategy:
matrix:
os: [ macos-latest ]
swift: ["5.7", "5.8", "5.9", "5.10"]
swift: ["5.9", "5.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '15.2.0'
xcode-version: '15.3.0'
- uses: fwal/setup-swift@v2
with:
swift-version: ${{ matrix.swift }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.7", "5.8", "5.9", "5.10"]
swift: ["5.9", "5.10"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,8 @@
- `Sendable` conformance to `Version` to satisfy build warnings when complete concurrency checks are enabled
- [SwiftFormat](https://github.com/nicklockwood/SwiftFormat/tree/main) with a format file. lint checks are done on CI

### Removed

- support for swift 5.7 and 5.8 on CI

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

0 comments on commit 2367930

Please sign in to comment.