File tree Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Expand file tree Collapse file tree 1 file changed +5
-13
lines changed Original file line number Diff line number Diff line change @@ -36,24 +36,16 @@ jobs:
36
36
with :
37
37
persist-credentials : false
38
38
39
- - name : Install missing software on ubuntu
40
- run : |
41
- sudo apt-get update
42
- sudo apt-get install libxml2-utils
43
-
44
39
# Initializes the CodeQL tools for scanning.
45
40
- name : Initialize CodeQL
46
- uses : github/codeql-action/init@v2
41
+ uses : github/codeql-action/init@v3
47
42
with :
48
43
languages : ${{ matrix.language }}
49
- # If you wish to specify custom queries, you can do so here or in a config file.
50
- # By default, queries listed here will override any specified in a config file.
51
- # Prefix the list here with "+" to use these queries and those in the config file.
52
- # queries: ./path/to/local/query, your-org/your-repo/queries@main
53
- setup-python-dependencies : false
54
44
55
- - run : |
45
+ - name : Build cppcheck
46
+ if : matrix.language == 'cpp'
47
+ run : |
56
48
make -j$(nproc) HAVE_RULES=yes cppcheck
57
49
58
50
- name : Perform CodeQL Analysis
59
- uses : github/codeql-action/analyze@v2
51
+ uses : github/codeql-action/analyze@v3
You can’t perform that action at this time.
0 commit comments