From a6756e1e6c52b91d3d38f33f16f292bc17d28572 Mon Sep 17 00:00:00 2001 From: Florian Friedrich Date: Thu, 15 Sep 2022 12:18:46 +0200 Subject: [PATCH 1/2] Add new OS versions --- src/os.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/os.ts b/src/os.ts index 8b55d905..77705af3 100644 --- a/src/os.ts +++ b/src/os.ts @@ -13,8 +13,8 @@ export namespace OS { } const AVAILABLE_OS: { [platform: string]: string[] } = { - macOS: ["latest", "11.0", "10.15"], - Ubuntu: ["latest", "20.04", "18.04", "16.04"], + macOS: ["latest", "12.0", "11.0", "10.15"], + Ubuntu: ["latest", "22.04", "20.04", "18.04", "16.04"], Windows: ["latest", "10"], }; From 497e6e90b204cbe97e6eed56979bdb435d8a5cfb Mon Sep 17 00:00:00 2001 From: Florian Friedrich Date: Thu, 15 Sep 2022 12:22:58 +0200 Subject: [PATCH 2/2] Add tests for new OS --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b477f3f1..bb5e1592 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,10 @@ jobs: os: [ubuntu-latest, macos-latest] swift: ["5.7"] include: + - os: macos-12 + swift: "5.7" + - os: ubuntu-22.04 + swift: "5.7" - os: windows-latest swift: "5.6.3" steps: