From 681f3b2592556e4880212984bbe5af89f66c96e0 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Wed, 3 Aug 2022 11:03:18 -0700 Subject: [PATCH] Update github workflow runners list (#435) Github is deprecating the MacOS-10.15 environment as MacOS-12 is coming online (currently beta), so this runner must be updated to MacOS-11 Ubuntu 22.04 LTS is now available so add that to the builds. Ubuntu 18.04 LTS should be supported until April 2023. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c9bf0a..a7f8e3c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-10.15, ubuntu-18.04] + os: [macos-11, ubuntu-22.04, ubuntu-18.04] steps: - uses: actions/checkout@v2 - name: Install X11 dependencies on MacOS @@ -37,7 +37,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-10.15, ubuntu-20.04, ubuntu-18.04] + os: [macos-11, ubuntu-22.04, ubuntu-20.04, ubuntu-18.04] env: BUILD_TYPE: Release steps: