From 098aa9b2afcd73746702a9427c3cb1a65add71f2 Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Wed, 7 Dec 2022 16:15:44 -0800 Subject: [PATCH] Update github runners os matrix to add macos-12 and replace now deprecated ubuntu-18.04 with ubuntu-20.04 (#449) --- .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 a7f8e3c..65862e8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [macos-11, ubuntu-22.04, ubuntu-18.04] + os: [macos-11, macos-12, ubuntu-22.04, ubuntu-20.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-11, ubuntu-22.04, ubuntu-20.04, ubuntu-18.04] + os: [macos-11, macos-12, ubuntu-22.04, ubuntu-20.04] env: BUILD_TYPE: Release steps: