From 1686cff6e9e54c4b3b60b6e81475e8e11290553b Mon Sep 17 00:00:00 2001 From: Haonan Date: Sat, 21 Sep 2024 00:07:24 +0800 Subject: [PATCH] Fix codeql cpp missing result --- .github/workflows/codeql.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6f493e5cf..4ae549952 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -27,7 +27,7 @@ jobs: # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners (GitHub.com only) # Consider using larger runners or machines with greater resources for possible analysis time improvements. - runs-on: ${{ (matrix.language == 'c-cpp' && 'windows-latest') || 'ubuntu-latest' }} + runs-on: ${{ (matrix.language == 'c-cpp' && 'macos-latest') || 'ubuntu-latest' }} timeout-minutes: ${{ 360 }} permissions: # required for all workflows @@ -45,7 +45,7 @@ jobs: matrix: include: - language: c-cpp - build-mode: manual + build-mode: autobuild - language: java-kotlin build-mode: none # This mode only analyzes Java. Set this to 'autobuild' or 'manual' to analyze Kotlin too. - language: python