From eb185ae00fa18f4d65e3e3954ba0430992fd4d3c Mon Sep 17 00:00:00 2001 From: Willem Lambooy <35612535+wlambooy@users.noreply.github.com> Date: Mon, 14 Oct 2024 09:48:24 +0200 Subject: [PATCH] :arrow_up: CodeQL now uses `clang++-13` (#542) * :arrow_up: CodeQL now uses `clang++-13` * :green_heart: use ubuntu-24.04 and clang++-17 similar to ubuntu.yml --------- Co-authored-by: Drewniok --- .github/workflows/codeql-analysis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 19e5b200b..af85201be 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ env: jobs: analyze: name: Analyze ${{ matrix.language }} - runs-on: ubuntu-latest + runs-on: ubuntu-24.04 permissions: actions: read contents: read @@ -47,7 +47,7 @@ jobs: fail-fast: false matrix: language: [ 'cpp', 'python' ] - compiler: [ clang++-11 ] + compiler: [ clang++-17 ] build_type: [ Debug ] steps: