From 0d0f724fe6523e80d60fc6e2084a4911fa13cf59 Mon Sep 17 00:00:00 2001 From: Michal Nowacki Date: Fri, 20 Dec 2024 18:05:59 -0500 Subject: [PATCH] ci: fix CodeQL's agent scan (#1002) Fix agent build scan by pinning runner to ubuntu-22.04. ubuntu-24.04, which is what ubuntu-latest has recently become, doesn't have agent's build dependency (libpcre3-dev) installed. --- .github/workflows/codeql.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index c715fe73b..48d046adf 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -16,7 +16,7 @@ jobs: # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners # Consider using larger runners for possible analysis time improvements. - runs-on: 'ubuntu-latest' + runs-on: 'ubuntu-22.04' timeout-minutes: 360 permissions: # required for all workflows