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 #828

Merged
merged 22 commits into from Nov 23, 2021
Merged
Show file tree
Hide file tree
Changes from all 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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/update-dependencies.yml
Expand Up @@ -11,8 +11,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
persist-credentials: false

- name: Remove PR label
env:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# CodeQL Action and CodeQL Runner Changelog

## 1.0.24 - 23 Nov 2021

- Update default CodeQL bundle version to 2.7.2. [#827](https://github.com/github/codeql-action/pull/827)

## 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)
Expand Down
4 changes: 4 additions & 0 deletions analyze/action.yml
Expand Up @@ -52,6 +52,10 @@ inputs:
description: Whether to upload the resulting CodeQL database
required: false
default: "true"
wait-for-processing:
description: If true, the Action will wait for the uploaded SARIF to be processed before completing.
required: true
default: "false"
token:
default: ${{ github.token }}
matrix:
Expand Down
15 changes: 11 additions & 4 deletions lib/analyze-action.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-action.js.map

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

2 changes: 1 addition & 1 deletion lib/defaults.json
@@ -1,3 +1,3 @@
{
"bundleVersion": "codeql-bundle-20211115"
"bundleVersion": "codeql-bundle-20211122"
}