From 0b49ba8bf9469ecd47bcf3c17acac5031ecca065 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BC=B2=EF=BC=A1=EF=BC=B0=EF=BC=B4=EF=BC=AF=EF=BC=B2?= =?UTF-8?q?=EF=BC=A9=EF=BC=AF=EF=BC=B5=EF=BC=B3?= Date: Sat, 1 Mar 2025 15:53:02 +0100 Subject: [PATCH 1/4] Update codeql.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RAPTORIOUS --- .github/workflows/codeql.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b082e92..9389a6a 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -87,3 +87,5 @@ jobs: uses: github/codeql-action/analyze@v3 with: category: "/language:${{matrix.language}}" + +pattern: "^(off|errors|warnings|(info|progress)|(debug|progress\+)|(trace|progress\+\+)|progress\+\+\+)$" From 9e8ce58387c0d5ac397b62c88198076ea2ec5997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BC=B2=EF=BC=A1=EF=BC=B0=EF=BC=B4=EF=BC=AF=EF=BC=B2?= =?UTF-8?q?=EF=BC=A9=EF=BC=AF=EF=BC=B5=EF=BC=B3?= Date: Sat, 1 Mar 2025 15:56:55 +0100 Subject: [PATCH 2/4] Update codeql.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RAPTORIOUS --- .github/workflows/codeql.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 9389a6a..b394514 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -88,4 +88,17 @@ jobs: with: category: "/language:${{matrix.language}}" -pattern: "^(off|errors|warnings|(info|progress)|(debug|progress\+)|(trace|progress\+\+)|progress\+\+\+)$" +properties: + verbosity: + title: "Extractor logging verbosity level." + description: | + Controls the level of verbosity of the extractor. The supported levels are (in order of increasing verbosity): + - off + - errors + - warnings + - info or progress + - debug or progress+ + - trace or progress++ + - progress+++ + type: string + pattern: "^(off|errors|warnings|info|progress|debug|progress\\+|trace|progress\\+\\+|progress\\+\\+\\+)$" From f6a5eca08b91314fb48b7ab078ced4d64ecb44f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BC=B2=EF=BC=A1=EF=BC=B0=EF=BC=B4=EF=BC=AF=EF=BC=B2?= =?UTF-8?q?=EF=BC=A9=EF=BC=AF=EF=BC=B5=EF=BC=B3?= Date: Tue, 4 Mar 2025 03:32:25 +0100 Subject: [PATCH 3/4] Update codeql.yml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit + is to pay to work clean, void, has zero in between. left it as it is if - Subzerowisentripoint (-+) Signed-off-by: RAPTORIOUS --- .github/workflows/codeql.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index b394514..adb8176 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -88,7 +88,7 @@ jobs: with: category: "/language:${{matrix.language}}" -properties: +properties: left-right verbosity: title: "Extractor logging verbosity level." description: | @@ -102,3 +102,4 @@ properties: - progress+++ type: string pattern: "^(off|errors|warnings|info|progress|debug|progress\\+|trace|progress\\+\\+|progress\\+\\+\\+)$" + From 3cdd574932c8f5d1f17f2d4cf53928258b3f2ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EF=BC=B2=EF=BC=A1=EF=BC=B0=EF=BC=B4=EF=BC=AF=EF=BC=B2?= =?UTF-8?q?=EF=BC=A9=EF=BC=AF=EF=BC=B5=EF=BC=B3?= Date: Wed, 12 Mar 2025 10:19:28 +0100 Subject: [PATCH 4/4] Error fixed --- .github/workflows/codeql.yml | 41 +++++++++++++++++++++++++++++++++++- 1 file changed, 40 insertions(+), 1 deletion(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index adb8176..ec2158f 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -19,6 +19,45 @@ on: schedule: - cron: '22 21 * * 3' +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + timeout-minutes: 360 + permissions: + security-events: write + packages: read + actions: read + contents: read + + strategy: + fail-fast: true + matrix: + language: [ 'c-cpp', 'codeql' ] # Explicitly specify the languages + build-mode: [ 'default' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + build-mode: ${{ matrix.build-mode }} + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: "/language:${{matrix.language}}" +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + schedule: + - cron: '22 21 * * 3' + jobs: analyze: name: Analyze (${{ matrix.language }}) @@ -88,7 +127,7 @@ jobs: with: category: "/language:${{matrix.language}}" -properties: left-right + verbosity: title: "Extractor logging verbosity level." description: |