Configure CodeQL to perform the analysis of the main branch
The CodeQL configuration file still has some references to the old branch `master`, that means that most of the information provided by the tool must be outdated. Change it is necessary to perform the correct analysis of the codebase. Closes #10103
This commit is contained in:
parent
011d108fff
commit
38d817b7b9
1 changed files with 2 additions and 2 deletions
4
.github/workflows/codeql-analysis.yml
vendored
4
.github/workflows/codeql-analysis.yml
vendored
|
@ -7,10 +7,10 @@ name: "CodeQL"
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
branches: [main]
|
||||
pull_request:
|
||||
# The branches below must be a subset of the branches above
|
||||
branches: [master]
|
||||
branches: [main]
|
||||
paths-ignore:
|
||||
- 'testsuite/**'
|
||||
- 'examples/**'
|
||||
|
|
Loading…
Reference in a new issue