Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
c3455c5
Update changelog and version after v4.31.6
github-actions[bot] Dec 1, 2025
c1ca379
Rebuild
github-actions[bot] Dec 1, 2025
f0ac9bf
Merge pull request #3337 from github/mergeback/v4.31.6-to-main-fe4161a2
mbg Dec 1, 2025
43224eb
Bump @eslint/eslintrc from 3.3.1 to 3.3.3 in the npm-minor group
dependabot[bot] Dec 1, 2025
ce27e95
Rebuild
github-actions[bot] Dec 1, 2025
d61a6fa
Update CLI config test to account for overlay db changes on PRs
mbg Dec 3, 2025
78357d3
Merge pull request #3341 from github/mbg/ci/update-cs-config-cli-tests
mbg Dec 3, 2025
aeabef7
Merge branch 'main' into dependabot/npm_and_yarn/npm-minor-77d26487b0
mbg Dec 3, 2025
267c467
Merge pull request #3339 from github/dependabot/npm_and_yarn/npm-mino…
mbg Dec 3, 2025
ac34c13
Update default bundle to codeql-bundle-v2.23.7
github-actions[bot] Dec 5, 2025
a2c01e7
Add changelog note
github-actions[bot] Dec 5, 2025
f5c63fa
Merge pull request #3343 from github/update-bundle/codeql-bundle-v2.23.7
oscarsj Dec 5, 2025
f4ebe95
Update changelog for v4.31.7
github-actions[bot] Dec 5, 2025
cf1bb45
Merge pull request #3344 from github/update-v4.31.7-f5c63fadd
oscarsj Dec 5, 2025
66d7f51
Revert "Update version and changelog for v3.31.6"
github-actions[bot] Dec 5, 2025
c2e4b77
Revert "Rebuild"
github-actions[bot] Dec 5, 2025
d2e9832
Merge remote-tracking branch 'origin/releases/v4' into backport-v3.31…
github-actions[bot] Dec 5, 2025
793f700
Update version and changelog for v3.31.7
github-actions[bot] Dec 5, 2025
817dbfb
Rebuild
github-actions[bot] Dec 5, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion .github/workflows/codescanning-config-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,33 @@ jobs:
with:
version: ${{ matrix.version }}

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

- name: Empty file (PR)
if: github.event_name == 'pull_request'
uses: ./../action/.github/actions/check-codescanning-config
with:
expected-config-file-contents: |
{
"query-filters": [
{
"exclude": {
"tags": "exclude-from-incremental"
}
}
]
}
languages: javascript
tools: ${{ steps.prepare-test.outputs.tools-url }}

- name: Packs from input
if: success() || failure()
uses: ./../action/.github/actions/check-codescanning-config
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

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

## 3.31.7 - 05 Dec 2025

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

## 3.31.6 - 01 Dec 2025

No user facing changes.
Expand Down
4 changes: 2 additions & 2 deletions lib/analyze-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/analyze-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/autobuild-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/defaults.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"bundleVersion": "codeql-bundle-v2.23.6",
"cliVersion": "2.23.6",
"priorBundleVersion": "codeql-bundle-v2.23.5",
"priorCliVersion": "2.23.5"
"bundleVersion": "codeql-bundle-v2.23.7",
"cliVersion": "2.23.7",
"priorBundleVersion": "codeql-bundle-v2.23.6",
"priorCliVersion": "2.23.6"
}
8 changes: 4 additions & 4 deletions lib/init-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/init-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/resolve-environment-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/setup-codeql-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/start-proxy-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/start-proxy-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/upload-lib.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/upload-sarif-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lib/upload-sarif-action.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading