commit 2b1c07a1d435b541c295afad13227ebb10def57e
parent 477d4bbf5f01e5c001a887ed6842e56b5341e976
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date: Sun, 12 Feb 2023 18:12:17 +0100
ci: remove unnecessary matrix from codeql workflow (#22239)
Diffstat:
1 file changed, 2 insertions(+), 8 deletions(-)
diff --git 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