Skip to content

Commit 8775e86

Browse files
authored
Merge pull request #1530 from github/update-v2.2.3-c4e22e9fc
Merge main into releases/v2
2 parents 39d8d7e + a2ad80b commit 8775e86

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+145
-501
lines changed

.eslintrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,12 @@
3333
"alphabetize": {"order": "asc"},
3434
"newlines-between": "always"
3535
}],
36+
"max-len": ["error", {
37+
"code": 120,
38+
"ignoreUrls": true,
39+
"ignoreStrings": true,
40+
"ignoreTemplateLiterals": true
41+
}],
3642
"no-async-foreach/no-async-foreach": "error",
3743
"no-console": "off",
3844
"no-sequences": "error",

CHANGELOG.md

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

3+
## 2.2.3 - 08 Feb 2023
4+
5+
- Update default CodeQL bundle version to 2.12.2. [#1518](https://github.com/github/codeql-action/pull/1518)
6+
37
## 2.2.2 - 06 Feb 2023
48

59
- Fix an issue where customers using the CodeQL Action with the [CodeQL Action sync tool](https://docs.github.com/en/[email protected]/admin/code-security/managing-github-advanced-security-for-your-enterprise/configuring-code-scanning-for-your-appliance#configuring-codeql-analysis-on-a-server-without-internet-access) would not be able to obtain the CodeQL tools. [#1517](https://github.com/github/codeql-action/pull/1517)

lib/codeql.js

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

lib/codeql.js.map

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

lib/codeql.test.js

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

lib/codeql.test.js.map

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

lib/config-utils.js

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

lib/config-utils.js.map

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

lib/config-utils.test.js

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

lib/config-utils.test.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

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-20230120",
3-
"cliVersion": "2.12.1",
4-
"priorBundleVersion": "codeql-bundle-20230105",
5-
"priorCliVersion": "2.12.0"
2+
"bundleVersion": "codeql-bundle-20230207",
3+
"cliVersion": "2.12.2",
4+
"priorBundleVersion": "codeql-bundle-20230120",
5+
"priorCliVersion": "2.12.1"
66
}

lib/feature-flags.js

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

0 commit comments

Comments
 (0)