Skip to content

Commit 3420803

Browse files
authored
Merge pull request #1 from RAPTOR1OUS/subside
Error fixed
2 parents f6a5eca + 3cdd574 commit 3420803

File tree

1 file changed

+40
-1
lines changed

1 file changed

+40
-1
lines changed

.github/workflows/codeql.yml

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,45 @@ on:
1919
schedule:
2020
- cron: '22 21 * * 3'
2121

22+
jobs:
23+
analyze:
24+
name: Analyze
25+
runs-on: ubuntu-latest
26+
timeout-minutes: 360
27+
permissions:
28+
security-events: write
29+
packages: read
30+
actions: read
31+
contents: read
32+
33+
strategy:
34+
fail-fast: true
35+
matrix:
36+
language: [ 'c-cpp', 'codeql' ] # Explicitly specify the languages
37+
build-mode: [ 'default' ]
38+
39+
steps:
40+
- name: Checkout repository
41+
uses: actions/checkout@v4
42+
43+
- name: Initialize CodeQL
44+
uses: github/codeql-action/init@v3
45+
with:
46+
languages: ${{ matrix.language }}
47+
build-mode: ${{ matrix.build-mode }}
48+
49+
- name: Perform CodeQL Analysis
50+
uses: github/codeql-action/analyze@v3
51+
with:
52+
category: "/language:${{matrix.language}}"
53+
on:
54+
push:
55+
branches: [ "main" ]
56+
pull_request:
57+
branches: [ "main" ]
58+
schedule:
59+
- cron: '22 21 * * 3'
60+
2261
jobs:
2362
analyze:
2463
name: Analyze (${{ matrix.language }})
@@ -88,7 +127,7 @@ jobs:
88127
with:
89128
category: "/language:${{matrix.language}}"
90129

91-
properties: left-right
130+
92131
verbosity:
93132
title: "Extractor logging verbosity level."
94133
description: |

0 commit comments

Comments
 (0)