From 7700fda82c042bf053e3b207d6c649e4d306e107 Mon Sep 17 00:00:00 2001 From: William Findlay Date: Mon, 22 Aug 2022 10:54:16 -0400 Subject: [PATCH] ci/codeql: change runner version Ubuntu 18.04 is deprecated and is now being severely throttled by GA. So let's update the runner to Ubuntu 20.04. Signed-off-by: William Findlay --- .github/workflows/lint-codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-codeql.yml b/.github/workflows/lint-codeql.yml index 5971d1c3306..0aea4ec0b43 100644 --- a/.github/workflows/lint-codeql.yml +++ b/.github/workflows/lint-codeql.yml @@ -16,7 +16,7 @@ jobs: check_changes: name: Deduce required tests from code changes if: ${{ github.event_name == 'pull_request' }} - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 outputs: go-changes: ${{ steps.go-changes.outputs.src }} steps: @@ -41,7 +41,7 @@ jobs: analyze: needs: check_changes if: ${{ needs.check_changes.outputs.go-changes == 'true' || github.event_name != 'pull_request' }} - runs-on: ubuntu-18.04 + runs-on: ubuntu-20.04 permissions: security-events: write steps: