Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
5a82333
Update changelog and version after v4.32.2
github-actions[bot] Feb 5, 2026
46c411a
Disable `noUnusedLocals` and `noUnusedParameters`
mbg Feb 6, 2026
d2901f5
Make FFs available in `start-proxy` action
mbg Jan 28, 2026
9b3a0d2
Merge pull request #3464 from github/mbg/disable-ts-unused-checks
mbg Feb 6, 2026
481be99
Merge remote-tracking branch 'origin/main' into mergeback/v4.32.2-to-…
github-actions[bot] Feb 6, 2026
4b8e16f
Rebuild
github-actions[bot] Feb 6, 2026
b13d724
Merge pull request #3462 from github/mergeback/v4.32.2-to-main-45cbd0c6
henrymercer Feb 6, 2026
310177a
Merge branch 'main' into mbg/start-proxy/test-connections
mbg Feb 9, 2026
93302bc
Move `Credential` type
mbg Feb 9, 2026
70eae15
Break up `Credential` type into two interfaces
mbg Feb 9, 2026
b030333
Add explicit dependency on `https-proxy-agent`
mbg Feb 9, 2026
c4717c9
Add `ProxyInfo` type and return from `startProxy`
mbg Feb 10, 2026
c7eff3f
Add `StartProxyConnectionChecks` feature
mbg Feb 10, 2026
01ee641
Test connections to registries, if FF is enabled
mbg Feb 10, 2026
9f2f6d0
Remove superflous log message
mbg Feb 10, 2026
700fc11
Add missing `else`
mbg Feb 10, 2026
4d44b57
Type that registries must have either an `url` or a `host`
mbg Feb 10, 2026
5135700
Add a 5s timeout to requests
mbg Feb 10, 2026
c4b0f60
Remove superfluous error handling details
mbg Feb 10, 2026
27b3b65
Remove unnecessary test assertions
mbg Feb 11, 2026
0387f55
Fix outdated comment
mbg Feb 11, 2026
4d0bec1
Rename types
mbg Feb 11, 2026
bd36637
Require validated `Credential` for `credentialToStr`
mbg Feb 11, 2026
e114998
Add test for missing type
mbg Feb 11, 2026
555ee17
Remove unused `logger` in `NetworkReachabilityBackend`
mbg Feb 11, 2026
2b5b614
Add `timeout` event handler
mbg Feb 11, 2026
fa6e24c
Bump the npm-minor group with 2 updates
dependabot[bot] Feb 11, 2026
be578c7
Rebuild
github-actions[bot] Feb 11, 2026
41d2cc3
Bump ruby/setup-ruby
dependabot[bot] Feb 11, 2026
d736445
Rebuild
github-actions[bot] Feb 11, 2026
efb92e2
Skip checks for non-URLs for now
mbg Feb 11, 2026
ff33514
Merge pull request #3466 from github/mbg/start-proxy/test-connections
mbg Feb 11, 2026
4edc7d2
Merge pull request #3467 from github/dependabot/npm_and_yarn/npm-mino…
mbg Feb 12, 2026
8ad4b6e
Merge pull request #3472 from github/dependabot/github_actions/dot-gi…
mbg Feb 12, 2026
43b46a1
Retry API authentication errors since these can be transient
henrymercer Feb 12, 2026
876cecb
Avoid requesting features in CCR
henrymercer Feb 12, 2026
2d6b98c
Merge pull request #3475 from github/henrymercer/retry-auth-errors
mbg Feb 12, 2026
05bca54
Apply suggestion from @Copilot
henrymercer Feb 12, 2026
be75dd9
Add changelog entry for #3466
mbg Feb 12, 2026
9658e23
Merge pull request #3476 from github/henrymercer/retry-auth-errors
henrymercer Feb 13, 2026
4bf6fa4
Merge pull request #3478 from github/mbg/changelog/add-connection-tes…
henrymercer Feb 13, 2026
1814c9f
Update changelog for v4.32.3
github-actions[bot] Feb 13, 2026
9e907b5
Merge pull request #3479 from github/update-v4.32.3-4bf6fa4e2
henrymercer Feb 13, 2026
e2a90d3
Revert "Update version and changelog for v3.32.2"
github-actions[bot] Feb 13, 2026
f5e6f52
Revert "Rebuild"
github-actions[bot] Feb 13, 2026
e127ec2
Merge remote-tracking branch 'origin/releases/v4' into backport-v3.32…
github-actions[bot] Feb 13, 2026
676a1ce
Update version and changelog for v3.32.3
github-actions[bot] Feb 13, 2026
70a71a5
Rebuild
github-actions[bot] Feb 13, 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/__rubocop-multi-language.yml

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

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.32.3 - 13 Feb 2026

- Added experimental support for testing connections to [private package registries](https://docs.github.com/en/code-security/how-tos/secure-at-scale/configure-organization-security/manage-usage-and-access/giving-org-access-private-registries). This feature is not currently enabled for any analysis. In the future, it may be enabled by default for Default Setup. [#3466](https://github.com/github/codeql-action/pull/3466)

## 3.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)
Expand Down
18 changes: 15 additions & 3 deletions lib/analyze-action-post.js

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

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

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

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

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

27 changes: 23 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.

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

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

Loading
Loading