diff options
-rw-r--r-- | .github/workflows/codeql.yml | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 7cdaab4f11..657ace20fd 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -13,11 +13,6 @@ jobs: contents: read security-events: write - strategy: - fail-fast: false - matrix: - language: [ 'cpp' ] - steps: - name: Checkout repository uses: actions/checkout@v3 @@ -28,10 +23,9 @@ jobs: - name: Initialize CodeQL uses: github/codeql-action/init@v2 with: - languages: ${{ matrix.language }} + languages: cpp - - if: matrix.language == 'cpp' - run: make + - run: make - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v2 |