Skip to content

Commit 530d4fe

Browse files
authored
Merge pull request #2334 from github/update-v3.25.9-37809d1f1
Merge main into releases/v3
2 parents 2e230e8 + 65db484 commit 530d4fe

File tree

212 files changed

+2927
-1288
lines changed

Some content is hidden

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

212 files changed

+2927
-1288
lines changed

.github/workflows/__cleanup-db-cluster-dir.yml

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

.github/workflows/script/update-node-modules.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
if [ "$1" != "update" && "$1" != "check-only" ]; then
1+
#!/bin/bash
2+
set -eu
3+
4+
if [ "$1" != "update" ] && [ "$1" != "check-only" ]; then
25
>&2 echo "Failed: Invalid argument. Must be 'update' or 'check-only'"
36
exit 1
47
fi
58

6-
sudo npm install --force -g [email protected]
9+
npm install --force -g [email protected]
710

811
# clean the npm cache to ensure we don't have any files owned by root
912
sudo npm cache clean --force

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ 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+
## 3.25.9 - 12 Jun 2024
8+
9+
- Avoid failing database creation if the database folder already exists and contains some unexpected files. Requires CodeQL 2.18.0 or higher. [#2330](https://github.com/github/codeql-action/pull/2330)
10+
- The init Action will attempt to clean up the database cluster directory before creating a new database and at the end of the job. This will help to avoid issues where the database cluster directory is left in an inconsistent state. [#2332](https://github.com/github/codeql-action/pull/2332)
11+
712
## 3.25.8 - 04 Jun 2024
813

914
- Update default CodeQL bundle version to 2.17.4. [#2321](https://github.com/github/codeql-action/pull/2321)

lib/actions-util.js

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

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.

lib/api-compatibility.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "maximumVersion": "3.13", "minimumVersion": "3.9" }
1+
{ "maximumVersion": "3.14", "minimumVersion": "3.9" }

lib/codeql.js

+4-1
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/init-action-post-helper.js

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

lib/init-action-post-helper.js.map

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

0 commit comments

Comments
 (0)