Skip to content

Commit 5503851

Browse files
committed
Add Swift 5.5.1
1 parent d3fab3d commit 5503851

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

__tests__/swift-versions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe("swift version resolver", () => {
2727

2828
it("identifies X versions", async () => {
2929
const version = await versions.verify("5", macOS);
30-
expect(version).toBe("5.5");
30+
expect(version).toBe("5.5.1");
3131
});
3232

3333
it("identifies versions based on system", async () => {

src/swift-versions.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as core from "@actions/core";
33
import { System, OS } from "./os";
44

55
const VERSIONS_LIST: [string, OS[]][] = [
6+
["5.5.1", [OS.MacOS, OS.Ubuntu]],
67
["5.5", [OS.MacOS, OS.Ubuntu]],
78
["5.4.3", [OS.MacOS, OS.Ubuntu]],
89
["5.4.2", [OS.MacOS, OS.Ubuntu]],

0 commit comments

Comments
 (0)