Skip to content

Commit cf6e019

Browse files
authored
Merge pull request #585 from github/update-v1.0.3-d623a7a3
Merge main into v1
2 parents 37f75f1 + a12bb22 commit cf6e019

32 files changed

+918
-31
lines changed

.github/update-release-branch.py

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
1313
## [UNRELEASED]
1414
15+
No user facing changes.
16+
1517
"""
1618

1719
# The branch being merged from.

.github/workflows/post-release-mergeback.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
PR_BODY="Updates version and changelog."
102102
103103
# Update the changelog
104-
perl -i -pe 's/^/## \[UNRELEASED\]\n\n/ if($.==3)' CHANGELOG.md
104+
perl -i -pe 's/^/## \[UNRELEASED\]\n\nNo user facing changes.\n\n/ if($.==3)' CHANGELOG.md
105105
git add .
106106
git commit -m "Update changelog and version after $VERSION"
107107
npm version patch

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CodeQL Action and CodeQL Runner Changelog
22

3+
## 1.0.3 - 23 Jun 2021
4+
5+
No user facing changes.
6+
37
## 1.0.2 - 17 Jun 2021
48

59
- Fix out of memory in hash computation. [#550](https://github.com/github/codeql-action/pull/550)

CODEOWNERS

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**/* @github/codeql-action-reviewers

analyze/action.yml

+4
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ inputs:
3434
category:
3535
description: String used by Code Scanning for matching the analyses
3636
required: false
37+
upload-database:
38+
description: Whether to upload the resulting CodeQL database
39+
required: false
40+
default: "true"
3741
token:
3842
default: ${{ github.token }}
3943
matrix:

lib/actions-util.js

+25-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/actions-util.test.js

+23-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)