You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,11 @@
2
2
3
3
## [UNRELEASED]
4
4
5
+
## 1.0.1 - 07 Jun 2021
6
+
7
+
- Pass the `--sarif-group-rules-by-pack` argument to CodeQL CLI invocations that generate SARIF. This means the SARIF rule object for each query will now be found underneath its corresponding query pack in `runs[].tool.extensions`. [#546](https://github.com/github/codeql-action/pull/546)
8
+
- Output the location of CodeQL databases created in the analyze step. [#543](https://github.com/github/codeql-action/pull/543)
9
+
5
10
## 1.0.0 - 31 May 2021
6
11
7
12
- Add this changelog file. [#507](https://github.com/github/codeql-action/pull/507)
Copy file name to clipboardExpand all lines: analyze/action.yml
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,10 @@ inputs:
13
13
description: Upload the SARIF file
14
14
required: false
15
15
default: "true"
16
+
cleanup-level:
17
+
description: "Level of cleanup to perform on CodeQL databases at the end of the analyze step. This should either be 'none' to skip cleanup, or be a valid argument for the --mode flag of the CodeQL CLI command 'codeql database cleanup' as documented at https://codeql.github.com/docs/codeql-cli/manual/database-cleanup"
18
+
required: false
19
+
default: "brutal"
16
20
ram:
17
21
description: Override the amount of memory in MB to be used by CodeQL. By default, almost all the memory of the machine is used.
18
22
required: false
@@ -34,6 +38,9 @@ inputs:
34
38
default: ${{ github.token }}
35
39
matrix:
36
40
default: ${{ toJson(matrix) }}
41
+
outputs:
42
+
db-locations:
43
+
description: A map from language to absolute path for each database created by CodeQL.
0 commit comments