Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
316ad9d
Add an option to allow waiting until an analysis has been processed b…
chrisgavin Oct 18, 2021
21a786f
Improve a log message.
chrisgavin Nov 17, 2021
49fc4c9
Reduce log message level.
chrisgavin Nov 17, 2021
823bb21
Add a default value for `wait-for-processing`.
chrisgavin Nov 17, 2021
e0b9b9a
Check for errors in the analysis status response.
chrisgavin Nov 17, 2021
4eef7ef
Split out waiting for processing.
chrisgavin Nov 17, 2021
215c4f5
Move the delay to the end of the loop.
chrisgavin Nov 17, 2021
b9bd459
Add a clarifying comment to a `break`.
chrisgavin Nov 17, 2021
3e36cdd
Merge pull request #781 from github/wait-for-processing
chrisgavin Nov 18, 2021
4860ed1
Remove `persist-credentials: false` from workflow
edoardopirovano Nov 19, 2021
02e1cdc
Merge pull request #823 from github/fix-update-workflow
edoardopirovano Nov 19, 2021
bca7198
1.0.23
invalid-email-address Nov 16, 2021
0aea878
fix changelog
hmakholm Nov 16, 2021
a392055
Update changelog and version after v1.0.23
invalid-email-address Nov 16, 2021
077f7b2
1.0.24
invalid-email-address Nov 16, 2021
dbf7ac4
Update checked-in dependencies
invalid-email-address Nov 19, 2021
26567f6
Merge pull request #819 from github/mergeback/v1.0.23-to-main-a627e9fa
edoardopirovano Nov 20, 2021
8b902e1
Bump default CodeQL version to 2.7.2
edoardopirovano Nov 22, 2021
c897659
Add CHANGELOG note for new bundle version
edoardopirovano Nov 22, 2021
0b242db
Merge pull request #827 from github/2.7.2-release
edoardopirovano Nov 22, 2021
bcd7e68
1.0.24
invalid-email-address Nov 23, 2021
2c99f99
Merge branch 'v1' into update-v1.0.24-0b242db7
edoardopirovano Nov 23, 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
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,17 @@

## [UNRELEASED]

- Update default CodeQL bundle version to 2.7.1.
No user facing changes.

## 1.0.23 - 16 Nov 2021

- The `upload-sarif` action now allows multiple uploads in a single job, as long as they have different categories. [#801](https://github.com/github/codeql-action/pull/801)
- Update default CodeQL bundle version to 2.7.1. [#816](https://github.com/github/codeql-action/pull/816)

## 1.0.22 - 04 Nov 2021

- The `init` step of the Action now supports `ram` and `threads` inputs to limit resource use of CodeQL extractors. These inputs also serve as defaults to the subsequent `analyze` step, which finalizes the database and executes queries. [#738](https://github.com/github/codeql-action/pull/738)
- When used with CodeQL 2.7.1 or above, the Action now includes custom query help in the analysis results uploaded to GitHub code scanning, if available. To add help text for a custom query, create a Markdown file next to the `.ql` file containing the query, using the same base name but the file extension `.md`. [#804](https://github.com/github/codeql-action/pull/804)
- The `upload-sarif` action now allows multiple uploads in a single job, as long as they have different categories. [#801](https://github.com/github/codeql-action/pull/801)

## 1.0.21 - 28 Oct 2021

Expand Down
2 changes: 1 addition & 1 deletion node_modules/.package-lock.json

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

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeql",
"version": "1.0.23",
"version": "1.0.24",
"private": true,
"description": "CodeQL action",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion runner/package-lock.json

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

2 changes: 1 addition & 1 deletion runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codeql-runner",
"version": "1.0.23",
"version": "1.0.24",
"private": true,
"description": "CodeQL runner",
"scripts": {
Expand Down