Skip to content

Commit e891551

Browse files
authored
Merge pull request github#799 from github/update-v1.0.21-a53b8d0e
Merge main into v1
2 parents e86ea38 + bd48dc5 commit e891551

File tree

10 files changed

+17
-10
lines changed

10 files changed

+17
-10
lines changed

.github/workflows/update-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ jobs:
3535
git config --global user.name "github-actions[bot]"
3636
git add node_modules
3737
git commit -am "Update checked-in dependencies"
38-
git push origin "$BRANCH"
38+
git push origin "HEAD:$BRANCH"
3939
fi

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL Action and CodeQL Runner Changelog
22

3+
## 1.0.21 - 28 Oct 2021
4+
5+
- Update default CodeQL bundle version to 2.7.0. [#795](https://github.com/github/codeql-action/pull/795)
6+
37
## 1.0.20 - 25 Oct 2021
48

59
No user facing changes.

lib/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20211013"
2+
"bundleVersion": "codeql-bundle-20211025"
33
}

node_modules/.package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "1.0.20",
3+
"version": "1.0.21",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

runner/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql-runner",
3-
"version": "1.0.20",
3+
"version": "1.0.21",
44
"private": true,
55
"description": "CodeQL runner",
66
"scripts": {

src/defaults.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20211013"
2+
"bundleVersion": "codeql-bundle-20211025"
33
}

upload-sarif/action.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ description: 'Upload the analysis results'
33
author: 'GitHub'
44
inputs:
55
sarif_file:
6-
description: The SARIF file or directory of SARIF files to be uploaded. Each upload should contain a maximum of 1000 results, any additional results are ignored.
6+
description: |
7+
The SARIF file or directory of SARIF files to be uploaded to GitHub code scanning.
8+
See https://docs.github.com/en/code-security/code-scanning/integrating-with-code-scanning/uploading-a-sarif-file-to-github#uploading-a-code-scanning-analysis-with-github-actions
9+
for information on the maximum number of results and maximum file size supported by code scanning.
710
required: false
811
default: '../results'
912
checkout_path:

0 commit comments

Comments
 (0)