Skip to content

Commit 4759df8

Browse files
authored
Merge pull request #2091 from github/backport-v2.23.1-0b21cf249
Merge releases/v3 into releases/v2
2 parents 8b7fcbf + 554005d commit 4759df8

File tree

194 files changed

+1580
-954
lines changed

Some content is hidden

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

194 files changed

+1580
-954
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ runs:
3333
fi
3434
echo "version=$VERSION" | tee -a $GITHUB_OUTPUT
3535
36-
- uses: swift-actions/setup-swift@f51889efb55dccf13be0ee727e3d6c89a096fb4c # Please update the corresponding SHA in the CLI's CodeQL Action Integration Test.
36+
- uses: swift-actions/setup-swift@cdbe0f7f4c77929b6580e71983e8606e55ffe7e4 # Please update the corresponding SHA in the CLI's CodeQL Action Integration Test.
3737
if: runner.os == 'Linux' && steps.get_swift_version.outputs.version != 'null'
3838
with:
3939
swift-version: "${{ steps.get_swift_version.outputs.version }}"

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ version: 2
22
updates:
33
- package-ecosystem: npm
44
directory: "/"
5+
reviewers:
6+
- "github/codeql-production-shield"
57
schedule:
68
interval: weekly
79
labels:
@@ -20,6 +22,8 @@ updates:
2022
- "*"
2123
- package-ecosystem: github-actions
2224
directory: "/"
25+
reviewers:
26+
- "github/codeql-production-shield"
2327
schedule:
2428
interval: weekly
2529
groups:
@@ -28,6 +32,8 @@ updates:
2832
- "*"
2933
- package-ecosystem: github-actions
3034
directory: "/.github/actions/setup-swift/" # All subdirectories outside of "/.github/workflows" must be explicitly included.
35+
reviewers:
36+
- "github/codeql-production-shield"
3137
schedule:
3238
interval: weekly
3339
groups:

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th
44

55
Note that the only difference between `v2` and `v3` of the CodeQL Action is the node version they support, with `v3` running on node 20 while we continue to release `v2` to support running on node 16. For example `3.22.11` was the first `v3` release and is functionally identical to `2.22.11`. This approach ensures an easy way to track exactly which features are included in different versions, indicated by the minor and patch version numbers.
66

7+
## 2.22.12 - 22 Dec 2023
8+
9+
No user facing changes.
10+
11+
## 2.23.1 - 17 Jan 2024
12+
13+
- Update default CodeQL bundle version to 2.16.0. [#2073](https://github.com/github/codeql-action/pull/2073)
14+
- Change the retention period for uploaded debug artifacts to 7 days. Previously, this was whatever the repository default was. [#2079](https://github.com/github/codeql-action/pull/2079)
15+
716
## 2.23.0 - 08 Jan 2024
817

918
- We are rolling out a feature in January 2024 that will disable Python dependency installation by default for all users. This improves the speed of analysis while having only a very minor impact on results. You can override this behavior by setting `CODEQL_ACTION_DISABLE_PYTHON_DEPENDENCY_INSTALLATION=false` in your workflow, however we plan to remove this ability in future versions of the CodeQL Action. [#2031](https://github.com/github/codeql-action/pull/2031)

README.md

-9
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,6 @@ This action runs GitHub's industry-leading semantic code analysis engine, [CodeQ
44

55
For a list of recent changes, see the CodeQL Action's [changelog](CHANGELOG.md).
66

7-
## :loudspeaker: Node 16 deprecation, upcoming CodeQL Action v3 :loudspeaker:
8-
Announcement for users of this Action and code scanning workflows on GitHub.com:
9-
10-
- You will begin to see these warnings about Node.js 16 deprecation in your Actions logs on code scanning runs starting October 23, 2023.
11-
- All code scanning workflows should continue to succeed regardless of the warning.
12-
- The team at GitHub maintaining the CodeQL Action is aware of the deprecation timeline and actively working on creating another version of the CodeQL Action, v3, that will bump us to Node 20.
13-
14-
For more information, and to communicate with the maintaining team, please use [this issue](https://github.com/github/codeql-action/issues/1959).
15-
167
## License
178

189
This project is released under the [MIT License](LICENSE).

lib/analyze-action.js

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

lib/analyze-action.js.map

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

lib/api-client.js

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

lib/api-client.js.map

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

lib/api-client.test.js

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

0 commit comments

Comments
 (0)