Merge main into check-api-version.
This commit is contained in:
commit
5e2fa08dae
8 changed files with 19 additions and 15 deletions
4
.github/ISSUE_TEMPLATE/config.yml
vendored
4
.github/ISSUE_TEMPLATE/config.yml
vendored
|
|
@ -1,5 +1,5 @@
|
||||||
blank_issues_enabled: true
|
blank_issues_enabled: true
|
||||||
contact_links:
|
contact_links:
|
||||||
- name: Contact GitHub Support
|
- name: Contact GitHub Support
|
||||||
url: https://support.github.com/contact?subject=Code+Scanning+Beta+Support&tags=code-scanning-support
|
url: https://support.github.com/request
|
||||||
about: Contact Support about code scanning
|
about: Contact Support
|
||||||
|
|
|
||||||
6
.github/workflows/python-deps.yml
vendored
6
.github/workflows/python-deps.yml
vendored
|
|
@ -43,10 +43,11 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: ./init
|
||||||
with:
|
with:
|
||||||
tools: latest
|
tools: latest
|
||||||
languages: python
|
languages: python
|
||||||
|
setup-python-dependencies: false
|
||||||
|
|
||||||
- name: Test Auto Package Installation
|
- name: Test Auto Package Installation
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -105,10 +106,11 @@ jobs:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: ./init
|
||||||
with:
|
with:
|
||||||
tools: latest
|
tools: latest
|
||||||
languages: python
|
languages: python
|
||||||
|
setup-python-dependencies: false
|
||||||
|
|
||||||
- name: Test Auto Package Installation
|
- name: Test Auto Package Installation
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
1
lib/codeql.js
generated
1
lib/codeql.js
generated
|
|
@ -399,6 +399,7 @@ function getCodeQLForCmd(cmd) {
|
||||||
memoryFlag,
|
memoryFlag,
|
||||||
threadsFlag,
|
threadsFlag,
|
||||||
databasePath,
|
databasePath,
|
||||||
|
"--min-disk-free=1024",
|
||||||
"--format=sarif-latest",
|
"--format=sarif-latest",
|
||||||
`--output=${sarifFile}`,
|
`--output=${sarifFile}`,
|
||||||
addSnippetsFlag,
|
addSnippetsFlag,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
"bundleVersion": "codeql-bundle-20201008"
|
"bundleVersion": "codeql-bundle-20201028"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -612,6 +612,7 @@ function getCodeQLForCmd(cmd: string): CodeQL {
|
||||||
memoryFlag,
|
memoryFlag,
|
||||||
threadsFlag,
|
threadsFlag,
|
||||||
databasePath,
|
databasePath,
|
||||||
|
"--min-disk-free=1024", // Try to leave at least 1GB free
|
||||||
"--format=sarif-latest",
|
"--format=sarif-latest",
|
||||||
`--output=${sarifFile}`,
|
`--output=${sarifFile}`,
|
||||||
addSnippetsFlag,
|
addSnippetsFlag,
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,3 @@
|
||||||
{
|
{
|
||||||
"bundleVersion": "codeql-bundle-20201008"
|
"bundleVersion": "codeql-bundle-20201028"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue