From 8ec7b279085663866ec4c0d3029144df8e13a149 Mon Sep 17 00:00:00 2001 From: Mahesh Bandara Wijerathna Date: Sun, 9 Apr 2023 01:19:32 +0530 Subject: [PATCH] Change Linux runner image to `ubuntu-20.04` (#982) This change is necessary since `ubuntu-18.04` is now fully unsupported by GitHub. --- .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 b2eb97ff..423ac197 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -39,7 +39,7 @@ jobs: publish: if: ${{ github.event_name == 'release' }} name: Publishing to NPM - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 needs: test steps: - uses: actions/checkout@v3 @@ -55,7 +55,7 @@ jobs: strategy: matrix: os: - - ubuntu-18.04 + - ubuntu-20.04 - macos-latest - windows-2019 name: Prebuild on ${{ matrix.os }}