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 releases/v2 #1764

Closed
wants to merge 28 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
e97b767
Update changelog and version after v2.20.3
github-actions[bot] Jul 6, 2023
485b580
Add deprecation warning for CodeQL CLIs < 2.9.4
henrymercer Jul 6, 2023
59c6251
Fix README link
MathiasVP Jul 6, 2023
3a96086
Simplify definitions of environment variables
henrymercer Jul 6, 2023
9b345a5
Only warn once about the CodeQL CLI being unsupported soon
henrymercer Jul 6, 2023
0bc3d1f
Update checked-in dependencies
github-actions[bot] Jul 6, 2023
fb57c98
Merge pull request #1756 from github/fix-readme
MathiasVP Jul 6, 2023
674e180
Add changelog note
henrymercer Jul 6, 2023
84c0579
Merge pull request #1755 from github/mergeback/v2.20.3-to-main-46ed16de
dbartol Jul 6, 2023
05cb00c
Merge branch 'main' into henrymercer/cli-deprecation-warning
henrymercer Jul 6, 2023
6418c5d
Skip an API call when downloading a CodeQL version with a semver bundle
henrymercer Jul 6, 2023
177a579
Tweak doc comment
henrymercer Jul 7, 2023
e191385
Polish deprecation wording
henrymercer Jul 7, 2023
f6c51a3
Remove redundant set of env var
henrymercer Jul 7, 2023
bc5c834
Merge pull request #1758 from github/henrymercer/bundle-semantic-vers…
henrymercer Jul 7, 2023
5499d30
Merge branch 'main' into henrymercer/cli-deprecation-warning
henrymercer Jul 7, 2023
395fdba
Merge pull request #1757 from github/henrymercer/cli-deprecation-warning
henrymercer Jul 7, 2023
bec18d1
Remove fallback logic for mapping default CLI version to GitHub Release
henrymercer Jul 7, 2023
50f2cc1
Remove now redundant `variant` property
henrymercer Jul 7, 2023
a41df3a
Add unit test for unsupported default version feature flags
henrymercer Jul 7, 2023
dc0234b
Remove redundant checks
henrymercer Jul 7, 2023
85c77f1
Merge pull request #1761 from github/henrymercer/remove-fetching-rele…
henrymercer Jul 7, 2023
f232722
Respect scaling_reserved_ram feature flag
nickrolfe Jul 7, 2023
28e070c
Add changenote for scaling_reserved_ram change
nickrolfe Jul 7, 2023
ab9aa50
Add integration test for scaling_reserved_ram feature flag
nickrolfe Jul 7, 2023
8f80d77
Bump tough-cookie and @azure/ms-rest-js (#1763)
dependabot[bot] Jul 10, 2023
6a07b2a
Merge pull request #1760 from github/nickrolfe/scaling-memory
nickrolfe Jul 10, 2023
de9770b
Update changelog for v2.20.4
github-actions[bot] Jul 10, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
98 changes: 98 additions & 0 deletions .github/workflows/__scaling-reserved-ram.yml

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

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# CodeQL Action Changelog

## 2.20.4 - 10 Jul 2023

- This is the last release of the Action that supports CodeQL CLI versions 2.8.5 to 2.9.3. These versions of the CodeQL CLI were deprecated on June 20, 2023 alongside GitHub Enterprise Server 3.5 and will not be supported by the next release of the CodeQL Action (2.21.0).
- If you are using one of these versions, please update to CodeQL CLI version 2.9.4 or later. For instance, if you have specified a custom version of the CLI using the 'tools' input to the 'init' Action, you can remove this input to use the default version.
- Alternatively, if you want to continue using a version of the CodeQL CLI between 2.8.5 and 2.9.3, you can replace 'github/codeql-action/*@v2' by 'github/codeql-action/*@v2.20.4' in your code scanning workflow to ensure you continue using this version of the CodeQL Action.
- We are rolling out a feature in July 2023 that will slightly reduce the default amount of RAM used for query execution, in proportion to the runner's total memory. This will help to avoid out-of-memory failures on larger runners. [#1760](https://github.com/github/codeql-action/pull/1760)

## 2.20.3 - 06 Jul 2023

- Update default CodeQL bundle version to 2.13.5. [#1743](https://github.com/github/codeql-action/pull/1743)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ You can use Actions or environment variables to share configuration across multi

## Troubleshooting

Read about [troubleshooting code scanning](https://help.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/troubleshooting-code-scanning).
Read about [troubleshooting code scanning](https://docs.github.com/en/code-security/code-scanning/troubleshooting-code-scanning).

## Contributing

Expand Down
12 changes: 6 additions & 6 deletions lib/actions-util.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/actions-util.js.map

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions lib/actions-util.test.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/actions-util.test.js.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions lib/analyze-action.js

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

Loading