diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a61020d..32d1e4f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -12,23 +12,28 @@ jobs: analyze: name: Analyze runs-on: ubuntu-latest + permissions: actions: read contents: read security-events: write + strategy: fail-fast: false matrix: language: [ 'python' ] + steps: - - name: Checkout repository + - name: Checkout 🛎️ uses: actions/checkout@v3 - - name: Initialize CodeQL + + - name: Initialize CodeQL 🧑‍💻 uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} queries: security-and-quality - - name: Perform CodeQL Analysis + + - name: Perform CodeQL Analysis 📈 uses: github/codeql-action/analyze@v2 with: category: "/language:${{matrix.language}}"