From 55b93c81cdae9e744cb3431420c9ea0affcace25 Mon Sep 17 00:00:00 2001 From: pseusys Date: Mon, 27 Feb 2023 22:28:04 +0100 Subject: [PATCH] workflow file emojis added --- .github/workflows/codeql.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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}}"