Skip to content

Commit fed4586

Browse files
committed
Merge branch 'main' into henrymercer/bump-minimum-codeql-version
2 parents 9f45792 + 6a07b2a commit fed4586

File tree

234 files changed

+32210
-34395
lines changed

Some content is hidden

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

234 files changed

+32210
-34395
lines changed

.github/actions/setup-swift/action.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,15 @@ runs:
2424
VERSION="null"
2525
else
2626
VERSION="$("$SWIFT_EXTRACTOR_DIR/tools/$PLATFORM/extractor" --version | awk '/version/ { print $3 }')"
27-
# Specify 5.7.0, otherwise setup Action will default to latest minor version.
27+
# Specify 5.x.0, otherwise setup Action will default to latest minor version.
2828
if [ $VERSION = "5.7" ]; then
2929
VERSION="5.7.0"
30-
fi
30+
elif [ $VERSION = "5.8" ]; then
31+
VERSION="5.8.0"
32+
# setup-swift does not yet support v5.8.1 Remove this when it does.
33+
elif [ $VERSION = "5.8.1" ]; then
34+
VERSION="5.8.0"
35+
fi
3136
fi
3237
echo "version=$VERSION" | tee -a $GITHUB_OUTPUT
3338

.github/workflows/__resolve-environment-action.yml

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

.github/workflows/__scaling-reserved-ram.yml

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

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,27 @@
33
## [UNRELEASED]
44

55
- Bump the minimum CodeQL bundle version to 2.9.4. [#1724](https://github.com/github/codeql-action/pull/1724)
6+
- 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).
7+
- 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.
8+
- 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.
9+
- 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)
10+
11+
## 2.20.3 - 06 Jul 2023
12+
13+
- Update default CodeQL bundle version to 2.13.5. [#1743](https://github.com/github/codeql-action/pull/1743)
14+
15+
## 2.20.2 - 03 Jul 2023
16+
17+
No user facing changes.
18+
19+
## 2.20.1 - 21 Jun 2023
20+
21+
- Update default CodeQL bundle version to 2.13.4. [#1721](https://github.com/github/codeql-action/pull/1721)
22+
- Experimental: add a new `resolve-environment` action which attempts to infer a configuration for the build environment that is required to build a given project. Do not use this in production as it is part of an internal experiment and subject to change at any time.
23+
24+
## 2.20.0 - 13 Jun 2023
25+
26+
- Bump the version of the Action to 2.20.0. This ensures that users who received a Dependabot upgrade to [`cdcdbb5`](https://github.com/github/codeql-action/commit/cdcdbb579706841c47f7063dda365e292e5cad7a), which was mistakenly marked as Action version 2.13.4, continue to receive updates to the CodeQL Action. Full details in [#1729](https://github.com/github/codeql-action/pull/1729)
627

728
## 2.3.6 - 01 Jun 2023
829

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ You can use Actions or environment variables to share configuration across multi
169169

170170
## Troubleshooting
171171

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

174174
## Contributing
175175

lib/actions-util.js

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

0 commit comments

Comments
 (0)