Skip to content

Commit 8466932

Browse files
authored
Merge pull request #473 from sersoft-gmbh/feature/new_os
Add new OS versions
2 parents 14590e8 + 497e6e9 commit 8466932

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,10 @@ jobs:
2525
os: [ubuntu-latest, macos-latest]
2626
swift: ["5.7"]
2727
include:
28+
- os: macos-12
29+
swift: "5.7"
30+
- os: ubuntu-22.04
31+
swift: "5.7"
2832
- os: windows-latest
2933
swift: "5.6.3"
3034
steps:

src/os.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ export namespace OS {
1313
}
1414

1515
const AVAILABLE_OS: { [platform: string]: string[] } = {
16-
macOS: ["latest", "11.0", "10.15"],
17-
Ubuntu: ["latest", "20.04", "18.04", "16.04"],
16+
macOS: ["latest", "12.0", "11.0", "10.15"],
17+
Ubuntu: ["latest", "22.04", "20.04", "18.04", "16.04"],
1818
Windows: ["latest", "10"],
1919
};
2020

0 commit comments

Comments
 (0)