From 407f2f5b5f4a2fa9e7361a4385b02b64e29cef13 Mon Sep 17 00:00:00 2001 From: Jake Boeckerman Date: Fri, 12 Aug 2022 11:02:56 -0600 Subject: [PATCH] Update github runner images Github deprecated and will remove two runner images macos-10.15 will be removed on 2022-08-30 macos-12 is available https://github.blog/changelog/2022-07-20-github-actions-the-macos-10-15-actions-runner-image-is-being-deprecated-and-will-be-removed-by-8-30-22/ ubuntu-18.04 will be removed on 2022-12-01 ubuntu-22.04 is available https://github.blog/changelog/2022-08-09-github-actions-the-ubuntu-18-04-actions-runner-image-is-being-deprecated-and-will-be-removed-by-12-1-22/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0eee145c..1d1c0eca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,7 @@ jobs: bats-test: strategy: matrix: - os: [ubuntu-20.04, ubuntu-18.04, macos-10.15, macos-11] + os: [ubuntu-20.04, ubuntu-22.04, macos-12, macos-11] runs-on: ${{ matrix.os }}