Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
2a384c1
Move `credentialToStr` and add tests
mbg Jan 29, 2026
fbe3ae9
Move `sendSuccessStatusReport` to `start-proxy` module
mbg Jan 29, 2026
4dcc8a9
Move failed status report code into `sendFailedStatusReport`
mbg Jan 29, 2026
f1588cd
Add `StartProxyError` for status-report-safe errors, and use for prox…
mbg Jan 29, 2026
6394750
Add test for `sendFailedStatusReport`
mbg Jan 29, 2026
325a3a2
Add `wrapFailureTest` test macro
mbg Jan 29, 2026
05bd050
Add and use `withRecordingLoggerAsync`
mbg Jan 29, 2026
1d0f911
Handle extraction errors with `StartProxyError`
mbg Jan 29, 2026
28f6d31
Handle toolcache errors with `StartProxyError`
mbg Jan 29, 2026
a6d296a
Move `getProxyBinaryPath` to `start-proxy` module
mbg Jan 29, 2026
d94d88d
Add tests for `getProxyBinaryPath`
mbg Jan 29, 2026
a1c7078
Use `getSafeErrorMessage` for unhandled error message
mbg Jan 29, 2026
beb9f53
Add and use `getProxyFilename`
mbg Jan 29, 2026
c1bba77
Update changelog and version after v4.32.1
github-actions[bot] Feb 2, 2026
e8d7df4
Rebuild
github-actions[bot] Feb 2, 2026
8aac4e4
Merge pull request #3448 from github/mergeback/v4.32.1-to-main-6bc82e05
henrymercer Feb 2, 2026
160e695
Merge branch 'main' into mbg/start-proxy/error-types
mbg Feb 2, 2026
832a783
Address minor review comments
mbg Feb 2, 2026
42fb267
Don't store error message in `StartProxyError` errors
mbg Feb 2, 2026
6d4cd5d
Add "Requires authentication" to `wrapApiConfigurationError`
henrymercer Feb 2, 2026
076d055
Improve `sendFailedStatusReport` tests
mbg Feb 2, 2026
57a47f4
Improve `credentialToStr` tests
mbg Feb 2, 2026
ab5b0e3
Merge pull request #3450 from github/henrymercer/add-requires-auth
henrymercer Feb 2, 2026
bc9796e
Bump @isaacs/brace-expansion from 5.0.0 to 5.0.1
dependabot[bot] Feb 3, 2026
d38ad56
Rebuild
github-actions[bot] Feb 3, 2026
f959778
Merge pull request #3451 from github/dependabot/npm_and_yarn/isaacs/b…
mbg Feb 4, 2026
73dbc83
Bump the npm-minor group across 1 directory with 4 updates
dependabot[bot] Feb 4, 2026
4f6ea84
Rebuild
github-actions[bot] Feb 4, 2026
7deb0a1
Merge pull request #3444 from github/mbg/start-proxy/error-types
mbg Feb 4, 2026
e2ac371
Initial plan
Copilot Feb 4, 2026
7a44a9d
Fix Rebuild Action workflow by adding --no-edit flag to git merge --c…
Copilot Feb 4, 2026
77591e2
Merge pull request #3459 from github/copilot/fix-github-actions-workf…
henrymercer Feb 5, 2026
3d03318
Update default bundle to codeql-bundle-v2.24.1
github-actions[bot] Feb 5, 2026
c36c948
Add changelog note
github-actions[bot] Feb 5, 2026
9702c27
Merge branch 'main' into dependabot/npm_and_yarn/npm-minor-4c1fc3d0aa
henrymercer Feb 5, 2026
b5f028a
Merge pull request #3457 from github/dependabot/npm_and_yarn/npm-mino…
henrymercer Feb 5, 2026
7aee932
Merge pull request #3460 from github/update-bundle/codeql-bundle-v2.24.1
henrymercer Feb 5, 2026
cb528be
Update changelog for v4.32.2
github-actions[bot] Feb 5, 2026
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
2 changes: 1 addition & 1 deletion .github/workflows/rebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
# Otherwise, just commit the changes.
if git rev-parse --verify MERGE_HEAD >/dev/null 2>&1; then
echo "In progress merge detected, finishing it up."
git merge --continue
git merge --continue --no-edit
else
echo "No in-progress merge detected, committing changes."
git commit -m "Rebuild"
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.

## 4.32.2 - 05 Feb 2026

- Update default CodeQL bundle version to [2.24.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.1). [#3460](https://github.com/github/codeql-action/pull/3460)

## 4.32.1 - 02 Feb 2026

- A warning is now shown in Default Setup workflow logs if a [private package registry is configured](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries) using a GitHub Personal Access Token (PAT), but no username is configured. [#3422](https://github.com/github/codeql-action/pull/3422)
Expand Down
124,255 changes: 71,255 additions & 53,000 deletions lib/analyze-action-post.js

Large diffs are not rendered by default.

30,683 changes: 16,088 additions & 14,595 deletions lib/analyze-action.js

Large diffs are not rendered by default.

Loading
Loading