Skip to content

Commit 1ed1437

Browse files
Merge pull request #1027 from github/update-v2.1.8-739937f1
Merge main into v2
2 parents 0182a2c + 3ed22c8 commit 1ed1437

9 files changed

+14
-9
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CodeQL Action Changelog
22

3+
## 2.1.8 - 08 Apr 2022
4+
5+
- Update default CodeQL bundle version to 2.8.5. [#1014](https://github.com/github/codeql-action/pull/1014)
6+
- Fix error where the init action would fail due to a GitHub API request that was taking too long to complete [#1025](https://github.com/github/codeql-action/pull/1025)
7+
38
## 2.1.7 - 05 Apr 2022
49

510
- A bug where additional queries specified in the workflow file would sometimes not be respected has been fixed. [#1018](https://github.com/github/codeql-action/pull/1018)

lib/actions-util.js

+1-1
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/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20220322"
2+
"bundleVersion": "codeql-bundle-20220401"
33
}

node_modules/.package-lock.json

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

package-lock.json

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

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codeql",
3-
"version": "2.1.7",
3+
"version": "2.1.8",
44
"private": true,
55
"description": "CodeQL action",
66
"scripts": {

src/actions-util.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ async function getWorkflowPath(): Promise<string> {
424424

425425
const apiClient = api.getActionsApiClient();
426426
const runsResponse = await apiClient.request(
427-
"GET /repos/:owner/:repo/actions/runs/:run_id",
427+
"GET /repos/:owner/:repo/actions/runs/:run_id?exclude_pull_requests=true",
428428
{
429429
owner,
430430
repo,

src/defaults.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"bundleVersion": "codeql-bundle-20220322"
2+
"bundleVersion": "codeql-bundle-20220401"
33
}

0 commit comments

Comments
 (0)