From 6cb32ec7e6f93183023289b903ac7540139560a3 Mon Sep 17 00:00:00 2001 From: csett86 Date: Tue, 2 Nov 2021 07:12:48 +0100 Subject: [PATCH] ci: move to macOS 11 and 20.04 (#651) Signed-off-by: Christoph Settgast --- .github/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18a7fbe..1ab9eb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ on: jobs: build-linux: name: Linux - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 @@ -31,17 +31,12 @@ jobs: npm run dist build-mac: name: macOS - runs-on: macos-10.15 + runs-on: macos-11 steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: node-version: '14.x' - - name: Fixup Xcode - # https://github.com/actions/virtual-environments/issues/2557 - run: | - sudo xcode-select -s "/Applications/Xcode_12.4.app" - sudo rm -Rf /Library/Developer/CommandLineTools/SDKs/* - name: Build it env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}