Skip to content

Commit 5e2fa08

Browse files
committed
Merge main into check-api-version.
2 parents 1a4385d + 9a0139e commit 5e2fa08

8 files changed

Lines changed: 19 additions & 15 deletions

File tree

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Contact GitHub Support
4-
url: https://support.github.com/contact?subject=Code+Scanning+Beta+Support&tags=code-scanning-support
5-
about: Contact Support about code scanning
4+
url: https://support.github.com/request
5+
about: Contact Support

.github/workflows/python-deps.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,11 @@ jobs:
4343
- uses: actions/checkout@v2
4444

4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: ./init
4747
with:
4848
tools: latest
4949
languages: python
50+
setup-python-dependencies: false
5051

5152
- name: Test Auto Package Installation
5253
run: |
@@ -105,10 +106,11 @@ jobs:
105106
- uses: actions/checkout@v2
106107

107108
- name: Initialize CodeQL
108-
uses: github/codeql-action/init@v1
109+
uses: ./init
109110
with:
110111
tools: latest
111112
languages: python
113+
setup-python-dependencies: false
112114

113115
- name: Test Auto Package Installation
114116
run: |

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ on:
2323
pull_request:
2424
schedule:
2525
# ┌───────────── minute (0 - 59)
26-
# │ ┌───────────── hour (0 - 23)
27-
# │ │ ┌───────────── day of the month (1 - 31)
28-
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
29-
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
30-
# │ │ │ │ │
31-
# │ │ │ │ │
32-
# │ │ │ │ │
33-
# * * * * *
26+
# ┌───────────── hour (0 - 23)
27+
# │ ┌───────────── day of the month (1 - 31)
28+
# │ │ ┌───────────── month (1 - 12 or JAN-DEC)
29+
# │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
30+
# │ │ │ │
31+
# │ │ │ │
32+
# │ │ │ │
33+
# * * * * *
3434
- cron: '30 1 * * 0'
3535

3636
jobs:

lib/codeql.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/codeql.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20201008"
2+
"bundleVersion": "codeql-bundle-20201028"
33
}

src/codeql.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -612,6 +612,7 @@ function getCodeQLForCmd(cmd: string): CodeQL {
612612
memoryFlag,
613613
threadsFlag,
614614
databasePath,
615+
"--min-disk-free=1024", // Try to leave at least 1GB free
615616
"--format=sarif-latest",
616617
`--output=${sarifFile}`,
617618
addSnippetsFlag,

src/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20201008"
2+
"bundleVersion": "codeql-bundle-20201028"
33
}

0 commit comments

Comments
 (0)