Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge main into v1 #527

Merged
merged 24 commits into from
May 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
db6341a
Use `--build`
RA80533 May 8, 2021
781da98
Remove final newline
RA80533 May 19, 2021
98104d8
Merge branch 'main' into chore/--build
aeisenberg May 19, 2021
bc39b21
Merge pull request #487 from RA80533/chore/--build
aeisenberg May 19, 2021
8566f9b
Add a changelog
aeisenberg May 18, 2021
1564a6d
Fix typo in changelog
aeisenberg May 19, 2021
1b3a351
Merge branch 'main' into aeisenberg/changelog
aeisenberg May 19, 2021
06b386a
Merge pull request #507 from github/aeisenberg/changelog
aeisenberg May 19, 2021
7ae8d16
Add the first changelog entry
aeisenberg May 20, 2021
6a98157
Merge pull request #514 from github/aeisenberg/first-changelog-entry
aeisenberg May 20, 2021
19fe63f
Analyze: Log the analysis summary in its own group
adityasharad May 19, 2021
031ec87
Group log messages while uploading results
adityasharad May 20, 2021
741bd73
Changelog: Add note for grouping of analysis logs
adityasharad May 20, 2021
512d467
Decode CodeQL stdout as UTF-8
adityasharad May 20, 2021
f84cc5e
Fix trailing newline in package.json
adityasharad May 20, 2021
8fa2ef8
Merge pull request #515 from adityasharad/analyze/summary-logging
adityasharad May 20, 2021
69cc355
Use --additional-packs instead of --search-path
aibaars May 20, 2021
ec011dd
Ensure queries[language] objects are initialized
aibaars May 20, 2021
9aca271
Remove superfluous if
aibaars May 21, 2021
84bec4d
Check queries in initConfig
aibaars May 21, 2021
6a14acc
Fix tests
aibaars May 21, 2021
1ad5a6c
Merge pull request #518 from github/aibaars-no-queries
aibaars May 21, 2021
c3e0f88
Merge branch 'main' into aibaars-additional-packs
aeisenberg May 21, 2021
eeaefb6
Merge pull request #517 from github/aibaars-additional-packs
aeisenberg May 21, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
lib/*.js linguist-generated=true

# Reduce incidence of needless merge conflicts on CHANGELOG.md
# The man page at
# https://mirrors.edge.kernel.org/pub/software/scm/git/docs/gitattributes.html
# suggests that this might interleave lines arbitrarily, but empirically
# it keeps added chunks contiguous
CHANGELOG.md merge=union
3 changes: 2 additions & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
### Merge / deployment checklist

- [ ] Confirm this change is backwards compatible with existing workflows.
- [ ] Confirm the [readme](https://github.com/github/codeql-action/blob/master/README.md) has been updated if necessary.
- [ ] Confirm the [readme](https://github.com/github/codeql-action/blob/main/README.md) has been updated if necessary.
- [ ] Confirm the [changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) has been updated if necessary.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# CodeQL Action and CodeQL Runner Changelog

## [UNRELEASED]

- Add this changelog file. [#507](https://github.com/github/codeql-action/pull/507)
- Improve grouping of analysis logs. Add a new log group containing a summary of metrics and diagnostics, if they were produced by CodeQL builtin queries. [#515](https://github.com/github/codeql-action/pull/515)
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

This action runs GitHub's industry-leading static analysis engine, CodeQL, against a repository's source code to find security vulnerabilities. It then automatically uploads the results to GitHub so they can be displayed in the repository's security tab. CodeQL runs an extensible set of [queries](https://github.com/github/codeql), which have been developed by the community and the [GitHub Security Lab](https://securitylab.github.com/) to find common vulnerabilities in your code.

For a list of recent changes, see the CodeQL Action's [changelog](CHANGELOG.md).

## License

This project is released under the [MIT License](LICENSE).
Expand Down
19 changes: 13 additions & 6 deletions lib/analyze.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/analyze.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/analyze.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading