Skip to content

Commit f6e388e

Browse files
authored
Merge pull request #1736 from github/update-v2.20.1-4385ad556
Merge main into releases/v2
2 parents 6c089f5 + 2874247 commit f6e388e

File tree

106 files changed

+26850
-29005
lines changed

Some content is hidden

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

106 files changed

+26850
-29005
lines changed

Diff for: .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

Diff for: .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.

Diff for: CHANGELOG.md

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

3+
## 2.20.1 - 21 Jun 2023
4+
5+
- Update default CodeQL bundle version to 2.13.4. [#1721](https://github.com/github/codeql-action/pull/1721)
6+
- 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.
7+
38
## 2.20.0 - 13 Jun 2023
49

510
- 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)

Diff for: lib/actions-util.js

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

Diff for: 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.

Diff for: lib/actions-util.test.js

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

Diff for: lib/actions-util.test.js.map

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

Diff for: lib/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.10", "minimumVersion": "3.6" }
1+
{ "maximumVersion": "3.10", "minimumVersion": "3.5" }

Diff for: lib/codeql.js

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

Diff for: lib/codeql.js.map

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

Diff for: lib/defaults.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-20230524",
3-
"cliVersion": "2.13.3",
4-
"priorBundleVersion": "codeql-bundle-20230428",
5-
"priorCliVersion": "2.13.1"
2+
"bundleVersion": "codeql-bundle-v2.13.4",
3+
"cliVersion": "2.13.4",
4+
"priorBundleVersion": "codeql-bundle-20230524",
5+
"priorCliVersion": "2.13.3"
66
}

Diff for: lib/init-action.js

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

0 commit comments

Comments
 (0)