Merge main into check-api-version.

This commit is contained in:
Chris Gavin 2020-11-02 09:02:05 +00:00
commit 5e2fa08dae
No known key found for this signature in database
GPG key ID: 07F950B80C27E4DA
8 changed files with 19 additions and 15 deletions

View file

@ -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

View file

@ -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: |

View file

@ -23,14 +23,14 @@ on:
pull_request: pull_request:
schedule: schedule:
# ┌───────────── minute (0 - 59) # ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23) # │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31) # │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC) # │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT) # │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │ # │ │ │ │ │
# │ │ │ │ │ # │ │ │ │ │
# │ │ │ │ │ # │ │ │ │ │
# * * * * * # * * * * *
- cron: '30 1 * * 0' - cron: '30 1 * * 0'
jobs: jobs:

1
lib/codeql.js generated
View file

@ -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

View file

@ -1,3 +1,3 @@
{ {
"bundleVersion": "codeql-bundle-20201008" "bundleVersion": "codeql-bundle-20201028"
} }

View file

@ -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,

View file

@ -1,3 +1,3 @@
{ {
"bundleVersion": "codeql-bundle-20201008" "bundleVersion": "codeql-bundle-20201028"
} }