Skip to content

Commit

Permalink
Merge pull request #636 from treastrain/swift-5.9.2
Browse files Browse the repository at this point in the history
Support for Swift 5.9.1 & 5.9.2
  • Loading branch information
fwal committed Jan 4, 2024
2 parents 61a116f + d2cd27e commit 2f52581
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.9"]
swift: ["5.9.2"]
include:
- os: macos-12
swift: "5.9"
swift: "5.9.2"
- os: ubuntu-22.04
swift: "5.9"
swift: "5.9.2"
- os: windows-latest
swift: "5.6.3"
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/stability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.9"]
swift: ["5.9.2"]
steps:
- uses: swift-actions/setup-swift@v1
with:
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
swift: ["5.9"]
swift: ["5.9.2"]
steps:
- uses: swift-actions/setup-swift@main
with:
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://img.shields.io/badge/platform-macOS%20%7C%20Ubuntu%20%7C%20Windows-lightgray" alt="Supports macOS, Ubuntu & Windows" />
</a>
<a href="https://swift.org">
<img src="https://img.shields.io/badge/Swift-5.9-F05138?logo=swift&logoColor=white" alt="Swift 5.9" />
<img src="https://img.shields.io/badge/Swift-5.9.2-F05138?logo=swift&logoColor=white" alt="Swift 5.9.2" />
</a>
<a href="https://github.com/swift-actions/setup-swift/releases/latest">
<img src="https://img.shields.io/github/v/release/swift-actions/setup-swift?sort=semver" alt="Latest release" />
Expand All @@ -28,7 +28,7 @@ After the environment is configured you can run swift commands using the standar
```yaml
- uses: swift-actions/setup-swift@v1
- name: Get swift version
run: swift --version # Swift 5.9
run: swift --version # Swift 5.9.2
```

A specific Swift version can be set using the `swift-version` input:
Expand Down Expand Up @@ -68,7 +68,7 @@ For example, Swift is available as version `5.1` but using this as value for `sw
In other words specifying...
- `"5.1.0"` will resolve to version `5.1`
- `"5.1"` will resolve to latest patch version (aka `5.1.1`)
- `"5"` will resolve to latest minor and patch version (aka `5.9`)
- `"5"` will resolve to latest minor and patch version (aka `5.9.2`)

### Caveats

Expand Down
2 changes: 1 addition & 1 deletion __tests__/swift-versions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ describe("swift version resolver", () => {

it("identifies X versions", async () => {
const version = await versions.verify("5", macOS);
expect(version).toBe("5.9");
expect(version).toBe("5.9.2");
});

it("identifies versions based on system", async () => {
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ inputs:
swift-version:
description: Swift version to configure
required: true
default: '5.9'
default: '5.9.2'
outputs:
version:
description: The full Swift version that was configured
Expand Down
2 changes: 2 additions & 0 deletions src/swift-versions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import * as core from "@actions/core";
import { System, OS } from "./os";

const VERSIONS_LIST: [string, OS[]][] = [
["5.9.2", [OS.MacOS, OS.Ubuntu]],
["5.9.1", [OS.MacOS, OS.Ubuntu]],
["5.9", [OS.MacOS, OS.Ubuntu]],
["5.8.1", [OS.MacOS, OS.Ubuntu]],
["5.8", [OS.MacOS, OS.Ubuntu]],
Expand Down

0 comments on commit 2f52581

Please sign in to comment.