Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fe0376e
Add `getGroupedSarifFilePaths` with tests
mbg Sep 29, 2025
13ae3d4
Add and use `getAnalysisConfig`
mbg Sep 29, 2025
0417531
Add `keysTyped` and `entriesTyped` helpers
mbg Sep 29, 2025
717d581
Add `fixCategory` to `AnalysisConfig`
mbg Sep 29, 2025
63d1b25
Use `getGroupedSarifFilePaths` for `upload-sarif` Action
mbg Sep 29, 2025
056fb86
Call `fixCategory` in `uploadSpecifiedFiles`
mbg Sep 29, 2025
93711d3
Print a warning when there are `sarifFiles` in `getGroupedSarifFilePa…
mbg Sep 29, 2025
b5caf11
Update default bundle to codeql-bundle-v2.23.2
github-actions[bot] Sep 30, 2025
47b5ac7
Add changelog note
github-actions[bot] Sep 30, 2025
ad086e4
Use `path.extname` for some extension checks
mbg Sep 30, 2025
b8c4966
Rename variables in `getGroupedSarifFilePaths`
mbg Sep 30, 2025
9a0b46a
Rename `keys` and `entries` helpers and update docs
mbg Sep 30, 2025
d25fa60
ESLint: Disable `no-unused-vars` for parameters starting with `_`
mbg Oct 1, 2025
91a63dc
Remove `undefined` values from results of `unsafeEntriesInvariant`
mbg Oct 1, 2025
aac66ec
Remove `update-proxy-release` workflow
mbg Oct 1, 2025
a506145
Add `StartProxy` to `ActionName` enum
mbg Oct 1, 2025
6de1d74
Move error handling from `startProxy` to `runWrapper` in `start-proxy…
mbg Oct 1, 2025
cb5a284
Send status report when `start-proxy` fails
mbg Oct 1, 2025
1591680
Send a basic status report in `start-proxy` Action if it succeeds
mbg Oct 1, 2025
d573787
Report registry types that are configured for CodeQL in `start-proxy`…
mbg Oct 1, 2025
b496401
Merge pull request #3170 from github/mbg/start-proxy/remove-update-wo…
mbg Oct 2, 2025
096fe67
Merge branch 'main' into update-bundle/codeql-bundle-v2.23.2
nickrolfe Oct 2, 2025
34afe5b
Merge pull request #3171 from github/mbg/start-proxy/telemetry
mbg Oct 2, 2025
4182ea3
Merge pull request #3168 from github/update-bundle/codeql-bundle-v2.23.2
nickrolfe Oct 2, 2025
10feb5d
Merge pull request #3167 from github/mbg/upload-sarif/find-then-filter
mbg Oct 2, 2025
909610e
Update changelog for v3.30.6
github-actions[bot] Oct 2, 2025
64d10c1
Merge pull request #3172 from github/update-v3.30.6-10feb5d2a
nickrolfe Oct 2, 2025
205744e
Update changelog and version after v3.30.6
github-actions[bot] Oct 2, 2025
70836b1
Rebuild
github-actions[bot] Oct 2, 2025
21a7ba3
Merge pull request #3173 from github/mergeback/v3.30.6-to-main-64d10c13
nickrolfe Oct 2, 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
99 changes: 0 additions & 99 deletions .github/workflows/update-proxy-release.yml

This file was deleted.

4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ See the [releases page](https://github.com/github/codeql-action/releases) for th

No user facing changes.

## 3.30.6 - 02 Oct 2025

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

## 3.30.5 - 26 Sep 2025

- We fixed a bug that was introduced in `3.30.4` with `upload-sarif` which resulted in files without a `.sarif` extension not getting uploaded. [#3160](https://github.com/github/codeql-action/pull/3160)
Expand Down
6 changes: 6 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,12 @@ export default [
"@typescript-eslint/prefer-regexp-exec": "off",
"@typescript-eslint/require-await": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
}
],
"func-style": "off",
},
},
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.

23 changes: 12 additions & 11 deletions lib/analyze-action.js

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

6 changes: 3 additions & 3 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.1",
"cliVersion": "2.23.1",
"priorBundleVersion": "codeql-bundle-v2.23.0",
"priorCliVersion": "2.23.0"
"bundleVersion": "codeql-bundle-v2.23.2",
"cliVersion": "2.23.2",
"priorBundleVersion": "codeql-bundle-v2.23.1",
"priorCliVersion": "2.23.1"
}
40 changes: 35 additions & 5 deletions lib/init-action-post.js

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

6 changes: 3 additions & 3 deletions lib/init-action.js

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

2 changes: 1 addition & 1 deletion lib/resolve-environment-action.js

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

2 changes: 1 addition & 1 deletion lib/start-proxy-action-post.js

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

Loading
Loading