Skip to content

Commit cf1bb45

Browse files
authored
Merge pull request #3344 from github/update-v4.31.7-f5c63fadd
Merge main into releases/v4
2 parents fe4161a + f4ebe95 commit cf1bb45

18 files changed

+83
-58
lines changed

.github/workflows/codescanning-config-cli.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,13 +70,33 @@ jobs:
7070
with:
7171
version: ${{ matrix.version }}
7272

73-
- name: Empty file
73+
# On PRs, overlay analysis may change the config that is passed to the CLI.
74+
# Therefore, we have two variants of the following test, one for PRs and one for other events.
75+
- name: Empty file (non-PR)
76+
if: github.event_name != 'pull_request'
7477
uses: ./../action/.github/actions/check-codescanning-config
7578
with:
7679
expected-config-file-contents: "{}"
7780
languages: javascript
7881
tools: ${{ steps.prepare-test.outputs.tools-url }}
7982

83+
- name: Empty file (PR)
84+
if: github.event_name == 'pull_request'
85+
uses: ./../action/.github/actions/check-codescanning-config
86+
with:
87+
expected-config-file-contents: |
88+
{
89+
"query-filters": [
90+
{
91+
"exclude": {
92+
"tags": "exclude-from-incremental"
93+
}
94+
}
95+
]
96+
}
97+
languages: javascript
98+
tools: ${{ steps.prepare-test.outputs.tools-url }}
99+
80100
- name: Packs from input
81101
if: success() || failure()
82102
uses: ./../action/.github/actions/check-codescanning-config

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs.
44

5+
## 4.31.7 - 05 Dec 2025
6+
7+
- Update default CodeQL bundle version to 2.23.7. [#3343](https://github.com/github/codeql-action/pull/3343)
8+
59
## 4.31.6 - 01 Dec 2025
610

711
No user facing changes.

lib/analyze-action-post.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/analyze-action.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/autobuild-action.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/defaults.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"bundleVersion": "codeql-bundle-v2.23.6",
3-
"cliVersion": "2.23.6",
4-
"priorBundleVersion": "codeql-bundle-v2.23.5",
5-
"priorCliVersion": "2.23.5"
2+
"bundleVersion": "codeql-bundle-v2.23.7",
3+
"cliVersion": "2.23.7",
4+
"priorBundleVersion": "codeql-bundle-v2.23.6",
5+
"priorCliVersion": "2.23.6"
66
}

lib/init-action-post.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/init-action.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/resolve-environment-action.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/setup-codeql-action.js

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)