Commits
Commits on Aug 18, 2021
-
Enforce a minimum version of CodeQL CLI
Edoardo Pirovano committedAug 18, 2021 Unverified
No user is associated with the committer email.Copy the full SHA 70d2efcView commit details
Commits on Aug 12, 2021
-
Pass
--ram
flag todatabase finalize
Edoardo Pirovano committedAug 12, 2021 Unverified
No user is associated with the committer email.Copy the full SHA 0c4306bView commit details
Commits on Jul 27, 2021
-
Rebuild after TypeScript version bump
Edoardo Pirovano committedJul 27, 2021 Unverified
No user is associated with the committer email.Copy the full SHA d9849b8View commit details
Commits on Jul 21, 2021
-
Augment where we insert baseline lines of code
Edoardo Pirovano committedJul 21, 2021 Unverified
No user is associated with the committer email.Copy the full SHA 11d5669View commit details
Commits on Jun 28, 2021
-
Support splitting of DB creation and query execution
Edoardo Pirovano committedJun 28, 2021 Unverified
No user is associated with the committer email.Copy the full SHA ef852c0View commit details
Commits on Jun 10, 2021
-
Remove unnecessary type assertions
Andrew Eisenberg committedJun 10, 2021 Copy the full SHA 20aafcdView commit details
Commits on Jun 9, 2021
-
Cleans up the output logs even more. These entries don't add any more information since everything is grouped now.
Andrew Eisenberg committedJun 9, 2021 Copy the full SHA 23cdd6bView commit details -
Add pack download to its own log group
Also, make the baseline count message less awkward sounding.
Andrew Eisenberg committedJun 9, 2021 Copy the full SHA a2e96a4View commit details -
Merge remote-tracking branch 'upstream/main' into aeisenberg/pack-run
Andrew Eisenberg committedJun 9, 2021 Copy the full SHA 82388fdView commit details -
Add new log grouping for DB cleanup
Edoardo Pirovano authored and Edoardo Pirovano committedJun 9, 2021 Copy the full SHA 06df98aView commit details
Commits on Jun 8, 2021
-
Replace analyze with run-queries and interpret-results
Edoardo Pirovano authored and Edoardo Pirovano committedJun 8, 2021 Copy the full SHA 2cc885dView commit details
Commits on Jun 6, 2021
-
Andrew Eisenberg committed
Jun 6, 2021 Copy the full SHA d87945eView commit details
Commits on Jun 4, 2021
-
Use strings instead. They are easier to serialize and deserialize.
Andrew Eisenberg committedJun 4, 2021 Copy the full SHA 06687e9View commit details -
Fix logic for calculating if there are queries to run
During the analyze phase.
Andrew Eisenberg committedJun 4, 2021 Copy the full SHA 9b5753aView commit details -
Cleanup CodeQL DBs and output their location for later steps
Edoardo Pirovano authored and Edoardo Pirovano committedJun 4, 2021 Copy the full SHA ddb83a4View commit details
Commits on Jun 3, 2021
-
Allow the codeql-action to run packages
This commit adds a `packs` option to the codeql-config.yml file. Users can specify a list of ql packs to include in the analysis. For a single language analysis, the packs property looks like this: ```yaml packs: - pack-scope/pack-name1@1.2.3 - pack-scope/pack-name2 # no explicit version means download the latest ``` For multi-language analysis, you must key the packs block by lanaguage: ```yaml packs: cpp: - pack-scope/pack-name1@1.2.3 - pack-scope/pack-name2 java: - pack-scope/pack-name3@1.2.3 - pack-scope/pack-name4 ``` This implementation adds a new analysis run (alongside custom and builtin runs). The unit tests indicate that the correct commands are being run, but I have not actually tried this with a real CLI. Also, convert `instanceof Array` to `Array.isArray` since that is sightly better in some situations. See: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray#instanceof_vs_isarray
Andrew Eisenberg committedJun 3, 2021 Copy the full SHA 86a804fView commit details
Commits on May 28, 2021
-
Analyze: Log analysis summaries for custom queries
Henry Mercer committedMay 28, 2021 Copy the full SHA 2338fe5View commit details
Commits on May 21, 2021
-
Arthur Baars committed
May 21, 2021 Copy the full SHA 84bec4dView commit details
Commits on May 20, 2021
-
Analyze: Log the analysis summary in its own group
Fix grouping of the analysis logs, so that custom query logs also get grouped. Capture the stdout of codeql database analyze, which contains the analysis summary from summary and diagnostic queries. Log this output in its own group, along with the baseline computed in the Action.
Aditya Sharad committedMay 20, 2021 Unverified
No user is associated with the committer email.Copy the full SHA 19fe63fView commit details
Commits on May 17, 2021
-
Add configuration option to set CodeQL DB location
Edoardo Pirovano authored and Edoardo Pirovano committedMay 17, 2021 Copy the full SHA 79c79f1View commit details
Commits on May 13, 2021
-
Use the prefix id for keying into metrics rules
Fixes a bug where we were looking for incorrect keys for metrics rules. Previously, we were using full language names in the keys. Now, we use the short language names in the metric ids. This is done through a simplification of the code. Also, this change does two smaller things: 1. Prints out the baseline count to the logs 2. Adds the `assertNever` function to ensure we never miss a case in a switch statement. This function is borrowed from vscode-codeql.
Andrew Eisenberg committedMay 13, 2021 Copy the full SHA e8b2a98View commit details
Commits on May 5, 2021
-
Merge branch 'main' into daverlo/categoryInput
David Verdeguer committedMay 5, 2021 Copy the full SHA a117668View commit details
Commits on May 4, 2021
-
The SARIF that we are interpreting has moved away from using `metric` to the more general term, `rule`. We need to adapt our baseline lines of code counting to use `rule` as well.
Andrew Eisenberg committedMay 4, 2021 Copy the full SHA a2312a0View commit details
Commits on May 3, 2021
-
Forward category input to codeql cli
David Verdeguer committedMay 3, 2021 Copy the full SHA c93cbc9View commit details
Commits on Apr 28, 2021
-
Avoid analyzing excluded language files for line counting
This change passes in a list of file types to the line counting analysis. These are the languages for the databases being analyzed. Line count analysis is restricted to these files.
Andrew Eisenberg committedApr 28, 2021 Copy the full SHA ee23462View commit details
Commits on Apr 26, 2021
-
Add baseline metrics for lines of code
This commit uses a third party library to estimate the lines of code in a database that is to be analyzed by codeql. The estimate uses the same includes and excludes globs for determining which files should be counted. The lines of code count is returned by language and injected into the SARIF as `baseline` property in the `${language}/summary/lines-of-code` metric.
Andrew Eisenberg committedApr 26, 2021 Copy the full SHA 998f472View commit details
Commits on Apr 22, 2021
-
Introduce our own toolcache implementation for use by the runnner
Robert committedApr 22, 2021 Copy the full SHA 8c91ba8View commit details
Commits on Apr 21, 2021
-
Add external git repositories to search path for custom queries
Edoardo Pirovano authored and Edoardo Pirovano committedApr 21, 2021 Copy the full SHA 578f9fcView commit details
Commits on Nov 27, 2020
-
Move uploading side-effect out of runAnalyze
Sam Partington committedNov 27, 2020 Copy the full SHA ff28c8dView commit details
Commits on Nov 26, 2020
-
Use better comparison operator
Sam Partington committedNov 26, 2020 Copy the full SHA 9532bdaView commit details -
Split upload method into two mode-specific ones
Sam Partington committedNov 26, 2020 Copy the full SHA 57514f3View commit details
Commits on Nov 23, 2020
-
Introduce parameter object for API params that travel together
Sam Partington committedNov 23, 2020 Copy the full SHA 20567b5View commit details
Commits on Nov 20, 2020
-
Eric Cornelissen committed
Nov 20, 2020 Copy the full SHA 5416d4fView commit details
Commits on Nov 3, 2020
-
Add the --threads config option to finalize db (#281)
This flag is already being used for `runQueries`, so let's use it for finalize as well.
Andrew Eisenberg authored and GitHub committedNov 3, 2020 Unverified
No user is associated with the committer email.Copy the full SHA bc1ee16View commit details
Commits on Oct 22, 2020
-
Fail the analyze action when some language fails to run the queries
David Verdeguer committedOct 22, 2020 Copy the full SHA d628762View commit details