From 888dfb5a56844692182acbb49fd5ce0a247b3fe1 Mon Sep 17 00:00:00 2001 From: safaie Date: Wed, 31 Jul 2024 12:17:25 +0200 Subject: [PATCH] Update codeQL.yml --- .github/workflows/codeQL.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.github/workflows/codeQL.yml b/.github/workflows/codeQL.yml index 469f278..3f7a2ee 100644 --- a/.github/workflows/codeQL.yml +++ b/.github/workflows/codeQL.yml @@ -14,12 +14,21 @@ jobs: actions: read contents: read + strategy: + fail-fast: false + matrix: + language: [ 'javascript', 'python' ] + steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 + with: + languages: ${{ matrix.language }} - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 + with: + category: "/language:${{ matrix.language }}"