docs: pull_request_target guidance and base-action trust model#1250
docs: pull_request_target guidance and base-action trust model#1250OctavianGuzu merged 3 commits intomainfrom
Conversation
Addresses claude-review finding on PR #1250 — base-action/README.md:255 and docs/configuration.md:332 still said the setting is 'always set to true'. :house: Remote-Dev: homespace
f3f6fb1 to
d917e7b
Compare
There was a problem hiding this comment.
Implementation looks solid and all my earlier feedback has been addressed — deferring to a human only because this is an intentional breaking change to a security-relevant default for standalone base-action consumers, which warrants a maintainer sign-off.
Extended reasoning...
Overview
This PR changes setupClaudeCodeSettings() so that enableAllProjectMcpServers is no longer hardcoded to true; it is now driven by a new enable_all_project_mcp_servers input. The base-action defaults the input to false (a behavior change), the wrapper action defaults it to true (no behavior change, since .mcp.json is already restored from the PR base ref via restoreConfigFromBase). Touches both action.yml files, both entrypoints (base-action/src/index.ts, src/entrypoints/run.ts), the settings helper, its unit tests, the MCP integration workflow, and four doc surfaces.
Security risks
The change is a security hardening: it stops the standalone base-action from auto-approving every MCP server in a PR-controlled .mcp.json. The new input is a plain boolean string compared with === "true", plumbed via the standard composite-action env: mapping — no injection surface. The wrapper keeps its prior behavior, justified by the existing restoreConfigFromBase mitigation. I see no new exposure introduced.
Level of scrutiny
Medium-high. The code change is mechanically simple (one new optional parameter, one boolean plumbed through two action manifests), but it sits on the MCP trust boundary and is an intentional breaking change for anyone calling anthropics/claude-code-base-action directly with a project .mcp.json. The split default (false for base-action, true for wrapper) is a reasonable design but is exactly the kind of policy decision a maintainer should explicitly ratify rather than have auto-approved.
Other factors
Over four review rounds I flagged stale doc notes, a missing docs/usage.md row, and two CI regressions in test-mcp-servers.yml (including the latent mcp_config plumbing gap) — all were fixed in f3f6fb1, cf66f1d, 9d2286e, and 52fafff and the threads are resolved. Unit tests now cover both the new default-false and explicit opt-in paths, plus the override-precedence over settings JSON. The current bug-hunt pass found nothing further. The only residual item is the pre-existing mcp_config plumbing gap, which the author has explicitly scoped out with a TODO and a follow-up — that's reasonable.
There was a problem hiding this comment.
All my earlier feedback has been addressed and I found nothing new — but this is an acknowledged breaking change to a security-relevant default (with the open "uniform rule vs. special-case trusted non-PR triggers" design call you flagged), so a maintainer should sign off rather than me.
Extended reasoning...
Overview
This PR flips enableAllProjectMcpServers from a hardcoded true to an opt-in: false by default in the base-action, and gated on restoreConfigFromBase in the wrapper. It adds a new enable_all_project_mcp_servers input to both action.yml files, threads it through base-action/src/index.ts → setup-claude-code-settings.ts and src/entrypoints/run.ts, adds resolveEnableAllProjectMcpServers() to restore-config.ts, and updates tests, docs (README, configuration.md, usage.md), and the test-mcp-servers.yml CI workflow. 12 files touched.
Security risks
The change moves in the safer direction (stops auto-trusting checkout-controlled .mcp.json), so it does not introduce new attack surface. The remaining risk is policy/design: the wrapper now defaults to false on non-PR triggers (push/schedule/workflow_dispatch/issues), which are trusted-checkout contexts where the original threat model doesn't apply. The author intentionally chose a uniform rule over special-casing those and explicitly invited maintainer input on that tradeoff.
Level of scrutiny
High. This is (a) an acknowledged breaking change for existing non-PR wrapper users relying on in-repo .mcp.json, (b) a change to a security-relevant default, and (c) touches both public action input surfaces and the main run.ts entrypoint. Breaking changes to published action defaults warrant human maintainer sign-off, not bot approval.
Other factors
Across six prior review rounds I raised stale-doc notes, two CI regressions, a JSDoc-ordering nit, and the non-PR-trigger behavior question — all were addressed (commits f3f6fb1, cf66f1d, 9d2286e, 52fafff, 9452710, 7942438, 47f4332) and the PR description was updated with an accurate behavior matrix and breaking-change section. Unit tests cover both the new setupClaudeCodeSettings parameter and resolveEnableAllProjectMcpServers. The implementation looks correct to me; I'm deferring purely on scope/breaking-change grounds, not correctness.
There was a problem hiding this comment.
All prior feedback is addressed and I found nothing new, but this changes a security default, adds a public input to both action manifests, and ships a documented breaking change for non-PR triggers (with an open design question on whether to special-case merged-code contexts) — that combination should get a maintainer's eyes before merge.
Extended reasoning...
Overview
This PR flips the enableAllProjectMcpServers default from hardcoded true to opt-in, threading a new enable_all_project_mcp_servers input through both base-action/action.yml and the wrapper action.yml. The wrapper auto-enables it only when restoreConfigFromBase ran (PR-entity contexts); all other triggers now default to false. It touches 13 files: both action manifests, src/entrypoints/run.ts, src/github/operations/restore-config.ts (new resolveEnableAllProjectMcpServers helper + bunfig.toml added to SENSITIVE_PATHS), base-action/src/{index,setup-claude-code-settings}.ts, three doc files, two test files, the MCP CI workflow, and a new base-action/bunfig.toml. The latest commit (219a2de) also pins bun's --config/--tsconfig-override in base-action/action.yml to the action directory.
Security risks
The change is itself a security hardening — it stops auto-trusting a checkout-controlled .mcp.json. The direction is strictly safer than before. The new bun-config pinning and adding bunfig.toml to the base-ref restore list close a related workspace-config surface. I see no new injection, auth, or data-exposure risk introduced; the input is a plain boolean string compared with === "true"/=== "false".
Level of scrutiny
High. This is (a) a change to a security-relevant default, (b) a new public input on both published actions, and (c) an acknowledged breaking change for wrapper users on push/schedule/workflow_dispatch/issues triggers. The author explicitly left a design choice open ("happy to revisit if we'd rather special-case the merged-code triggers") — whether to keep the uniform rule or default trusted non-PR checkouts back to true is a product/security tradeoff a maintainer should ratify, not a bot.
Other factors
Seven rounds of bot review surfaced two CI regressions, an orphaned JSDoc, and four stale-doc spots — all fixed and resolved. Unit tests cover both setupClaudeCodeSettings and the new resolver; the MCP integration workflow was opted in. The diff is internally consistent and well-documented now, but the breaking-change scope plus the open design question put this outside what I'll approve without a human.
There was a problem hiding this comment.
No issues found in the final state — all earlier review threads are resolved. Deferring to a maintainer because this changes a security-relevant default (auto-enabling in-repo .mcp.json servers) with breaking-change implications for workflow_run and base-action-standalone users, and the trust-gating design iterated several times during review; worth a human sign-off on the final semantics.
Extended reasoning...
Overview
This PR changes how enableAllProjectMcpServers is resolved across both the base-action and the wrapper action, adds an enable_all_project_mcp_servers opt-in input, pins bun's --config/--tsconfig-override/--no-env-file in base-action, adds bunfig.toml to SENSITIVE_PATHS, and pins --setting-sources user for plugin install. It touches 16 files: both action.yml definitions, run.ts, restore-config.ts, setup-claude-code-settings.ts, install-plugins.ts, four docs files, two test files, a CI workflow, and a new bunfig.toml + test/restore-config.test.ts.
Security risks
The whole PR is about a security-relevant default — whether to auto-approve every MCP server in the checkout's .mcp.json. The final design is strictly tighter than main (where it was hardcoded true): the base-action now defaults to false under pull_request_target/workflow_run/issue_comment, and the wrapper only forces true when it has positively established the project config is merged code (PR-restored, or non-PR entity event). Nothing here widens an attack surface; the risk is in getting the trust gating right, and the two-layer resolver (wrapper → true/undefined, base-action ??= !isPrivilegedExternalEvent()) is subtle enough that a maintainer should confirm the final event-by-event matrix matches intent.
Level of scrutiny
High. This is a security-hardening change to a published GitHub Action's default behavior, with a documented breaking change for some triggers. The design flipped several times during review (wrapper default true → gated on configRestoredFromBase → bare true → gated on projectConfigTrusted deferring to base-action), so the docs/PR-body/behavior alignment deserves a final human read. Not a candidate for bot auto-approval.
Other factors
All twelve of my earlier inline threads are resolved and the bug hunter found nothing on the current head (fa0de7b). Unit tests cover both resolvers and the event-gated defaults. The one residual nit — action.yml/docs/usage.md/docs/configuration.md still phrase the wrapper default as a flat "Defaults to true" — is now mostly accurate after the final design (only workflow_run deviates), so I'm not re-raising it. The pre-existing mcp_config plumbing gap is correctly noted as a TODO and out of scope.
fa0de7b to
5b8c1be
Compare
There was a problem hiding this comment.
No further issues found — all earlier feedback has been addressed. Deferring to a human reviewer for sign-off since this changes security-relevant defaults (enableAllProjectMcpServers gating, SENSITIVE_PATHS, isPrivilegedExternalEvent) and the two-layer wrapper/base-action resolver design went through several iterations that a maintainer should validate.
Extended reasoning...
Overview
This PR changes how project-level .mcp.json servers are auto-enabled, across 16 files: both action.yml definitions, base-action/src/setup-claude-code-settings.ts (new isPrivilegedExternalEvent + resolveEnableAllProjectMcpServers), src/entrypoints/run.ts (new projectConfigTrusted gating), src/github/operations/restore-config.ts (adds bunfig.toml to SENSITIVE_PATHS + wrapper resolver), base-action/src/install-plugins.ts (pins --setting-sources user), base-action/action.yml (pins bun --config/--tsconfig-override/--no-env-file), four doc files including a new docs/security.md section on pull_request_target/workflow_run, the MCP integration workflow, and corresponding tests.
Security risks
The PR is itself a security hardening — it tightens defaults so attacker-controlled .mcp.json is not auto-approved under privileged-external events. The risks to review are in the design rather than the implementation: the final behavior is the composition of two resolvers (wrapper returns true/false/undefined; base-action's ??= !isPrivilegedExternalEvent() fills undefined), and the per-event truth table (PR-entity → restore+enable; issues/non-PR issue_comment → trust default-branch; push/schedule/workflow_dispatch → enable via fallback; workflow_run → disable) is subtle enough that a maintainer should confirm it matches the intended threat model. Adding bunfig.toml to SENSITIVE_PATHS and pinning bun's --config/--no-env-file also change what the action reads from the workspace at startup.
Level of scrutiny
High. This is production-critical, security-sensitive code that determines whether arbitrary MCP server commands from a checkout are auto-spawned with the action's secrets. The design iterated substantially during review (the wrapper default flipped between restore-gated → bare true → restore-gated → projectConfigTrusted+fallback), and the author noted they're "happy to revisit" the merged-code-trigger special-casing — that's a judgment call for a maintainer, not a bot.
Other factors
All 13 prior inline comments from automated review have been addressed and resolved; the current bug-hunting pass found nothing. Unit tests cover both resolvers and the event-gated default. The base-action change is technically a behavioral change for standalone users on pull_request_target/workflow_run/issue_comment (now defaults to false), which is intentional and documented but worth a maintainer's explicit acknowledgment.
…rust model Adds a security.md section on safe checkout patterns under pull_request_target/workflow_run, and a trust-model section to the base-action README clarifying that callers are responsible for the working directory and prompt being trusted. :house: Remote-Dev: homespace
2c59353 to
1201a9b
Compare
… ref Second example now checks out the base ref at the workspace root before the head-ref subdirectory checkout (this action expects a git repo at the root). Adds the workflow_run ref form, drops the PRT-specific gh-pr-diff hint from the first example, and generalises the closing line to cover both event types. :house: Remote-Dev: homespace
There was a problem hiding this comment.
LGTM — 1d51c38 re-applied the root checkout and workflow_run ref fixes, so the examples now work as written; the remaining @v4→@v6 note is cosmetic.
Extended reasoning...
Overview
After an extensive descope, this PR is now purely additive documentation touching two files: a new Trust model section in base-action/README.md clarifying that the base action enforces no trust boundaries and pointing untrusted-input workflows at the wrapper, and a new section in docs/security.md covering safe checkout patterns under pull_request_target / workflow_run plus a brief base-action vs wrapper distinction. No code, action.yml, workflow, or test changes remain.
What changed since my last review
My unresolved comment (3149461566) flagged that the earlier 4ac01f0 doc edits hadn't survived the descope. Commit 1d51c38 re-applies them: the second example now prepends a base-ref actions/checkout at the workspace root (so the action's git fetch in restoreConfigFromBase won't hit fatal: not a git repository), the prose at line 25 names both github.event.pull_request.head.sha and github.event.workflow_run.head_sha, the second example carries an inline comment for the workflow_run ref, the PRT-only gh pr diff/gh pr view hint is removed, and the closing line is generalised to "these event types". All four points from that comment are addressed.
Security risks
None introduced — this is documentation only. The content is itself security guidance, so accuracy matters: I've verified the recommended patterns against the action's behaviour (pull_request_target normalises to a PR entity context and runs restoreConfigFromBase in cwd, hence the root-checkout requirement; --add-dir pr-head keeps the untrusted ref out of the project-config search path). The trust-model section's claims about the wrapper (actor permission checks, base-ref config restore) are accurate per src/github/operations/restore-config.ts and src/github/validation/actor.ts. The external links point to the official GitHub Security Lab pwn-requests writeup and Anthropic's Claude Code security docs.
Level of scrutiny
Moderate — security docs are copy-pasted into user workflows so the examples need to be runnable and not misleading, but there is zero runtime/behavioural surface in this diff. The content has been through ~14 rounds of review on this PR (most of it on now-removed code changes), and every doc-specific issue raised has been incorporated.
Other factors
The one inline nit on this run — actions/checkout@v4 vs the repo's @v6 convention — is purely cosmetic with no functional difference, and explicitly non-blocking. Two pre-existing @v4 references already exist in the repo. Fine to take or leave at the author's discretion.
🏠 Remote-Dev: homespace
There was a problem hiding this comment.
LGTM — docs-only addition with accurate, conservative security guidance; all prior feedback addressed.
Extended reasoning...
Overview
This PR has been descoped to a pure documentation change touching two files: base-action/README.md (+8 lines adding a Trust model section) and docs/security.md (+33 lines adding a section on safe checkout patterns under pull_request_target / workflow_run, plus a brief subsection distinguishing claude-code-action from claude-code-base-action). No code, config, workflow, or test files are modified.
Security risks
None introduced. This is additive security documentation that reduces risk by steering users away from the well-known pwn-request foot-gun (checking out an untrusted PR head into $GITHUB_WORKSPACE under a privileged event). The recommended patterns are correct: base-ref checkout at the workspace root, untrusted head ref isolated to a subdirectory via path: + --add-dir. The base-action trust-model section accurately states that the base-action enforces no trust boundaries and points users to the wrapper for untrusted-input workflows. External links (GitHub Security Lab pwn-request article, Anthropic security docs) are appropriate and the internal #trust-model anchor resolves.
Level of scrutiny
Low-to-moderate. It is security documentation rather than security code — no runtime behavior changes. The content has already been through extensive iterative review on this PR (14+ inline threads, all resolved): the second example was fixed to include a root-level base-ref checkout so it doesn't hard-fail with fatal: not a git repository, the workflow_run.head_sha variant was added alongside the PRT ref, the PRT-only gh pr diff hint was dropped, the closing line was generalized, and the actions/checkout pins were aligned to @v6 (commit cf1170e). I re-read the final diff against each of those resolved threads and all agreed-upon fixes are present.
Other factors
No CODEOWNERS file in the repo. No outstanding reviewer comments. The bug-hunting system found nothing on the current revision. The earlier code/behavior changes (the enable_all_project_mcp_servers input and resolver logic) that drove most of the prior review traffic have been removed from this PR entirely, so the bulk of the resolved threads are now moot — what remains is a small, self-contained, purely additive doc change.
…opics#1250) * docs: add pull_request_target/workflow_run guidance and base-action trust model Adds a security.md section on safe checkout patterns under pull_request_target/workflow_run, and a trust-model section to the base-action README clarifying that callers are responsible for the working directory and prompt being trusted. :house: Remote-Dev: homespace * docs: refine PRT/workflow_run guidance — root checkout + workflow_run ref Second example now checks out the base ref at the workspace root before the head-ref subdirectory checkout (this action expects a git repo at the root). Adds the workflow_run ref form, drops the PRT-specific gh-pr-diff hint from the first example, and generalises the closing line to cover both event types. :house: Remote-Dev: homespace * docs: use actions/checkout@v6 in examples (consistency) :house: Remote-Dev: homespace Co-authored-by: dotnetbysomik <225379043+dotnetbysomik@users.noreply.github.com>
… updates [skip ci] Bumps the github-actions group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/cache](https://github.com/actions/cache) | `5.0.4` | `5.0.5` | | [docker/login-action](https://github.com/docker/login-action) | `4.0.0` | `4.1.0` | | [graalvm/setup-graalvm](https://github.com/graalvm/setup-graalvm) | `1.5.0` | `1.5.2` | | [mikepenz/release-changelog-builder-action](https://github.com/mikepenz/release-changelog-builder-action) | `6.1.1` | `6.2.1` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `7.0.0` | `7.0.1` | | [anchore/scan-action](https://github.com/anchore/scan-action) | `7.3.2` | `7.4.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.33.0` | `4.35.2` | | [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) | `1.0.75` | `1.0.110` | | [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `8.1.0` | `8.1.1` | | [ruby/setup-ruby](https://github.com/ruby/setup-ruby) | `1.295.0` | `1.306.0` | | [robfrank/kamal-accessories-updater](https://github.com/robfrank/kamal-accessories-updater) | `26.1.0` | `26.4.0` | | [actions/setup-node](https://github.com/actions/setup-node) | `6.3.0` | `6.4.0` | Updates `actions/cache` from 5.0.4 to 5.0.5 Release notes *Sourced from [actions/cache's releases](https://github.com/actions/cache/releases).* > v5.0.5 > ------ > > What's Changed > -------------- > > * Update ts-http-runtime dependency by [`@yacaovsnc`](https://github.com/yacaovsnc) in [actions/cache#1747](https://redirect.github.com/actions/cache/pull/1747) > > **Full Changelog**: <https://github.com/actions/cache/compare/v5...v5.0.5> Changelog *Sourced from [actions/cache's changelog](https://github.com/actions/cache/blob/main/RELEASES.md).* > Releases > ======== > > How to prepare a release > ------------------------ > > > [!NOTE] > > Relevant for maintainers with write access only. > > 1. Switch to a new branch from `main`. > 2. Run `npm test` to ensure all tests are passing. > 3. Update the version in [`https://github.com/actions/cache/blob/main/package.json`](https://github.com/actions/cache/blob/main/package.json). > 4. Run `npm run build` to update the compiled files. > 5. Update this [`https://github.com/actions/cache/blob/main/RELEASES.md`](https://github.com/actions/cache/blob/main/RELEASES.md) with the new version and changes in the `## Changelog` section. > 6. Run `licensed cache` to update the license report. > 7. Run `licensed status` and resolve any warnings by updating the [`https://github.com/actions/cache/blob/main/.licensed.yml`](https://github.com/actions/cache/blob/main/.licensed.yml) file with the exceptions. > 8. Commit your changes and push your branch upstream. > 9. Open a pull request against `main` and get it reviewed and merged. > 10. Draft a new release <https://github.com/actions/cache/releases> use the same version number used in `package.json` > 1. Create a new tag with the version number. > 2. Auto generate release notes and update them to match the changes you made in `RELEASES.md`. > 3. Toggle the set as the latest release option. > 4. Publish the release. > 11. Navigate to <https://github.com/actions/cache/actions/workflows/release-new-action-version.yml> > 1. There should be a workflow run queued with the same version number. > 2. Approve the run to publish the new version and update the major tags for this action. > > Changelog > --------- > > ### 5.0.4 > > * Bump `minimatch` to v3.1.5 (fixes ReDoS via globstar patterns) > * Bump `undici` to v6.24.1 (WebSocket decompression bomb protection, header validation fixes) > * Bump `fast-xml-parser` to v5.5.6 > > ### 5.0.3 > > * Bump `@actions/cache` to v5.0.5 (Resolves: <https://github.com/actions/cache/security/dependabot/33>) > * Bump `@actions/core` to v2.0.3 > > ### 5.0.2 > > * Bump `@actions/cache` to v5.0.3 [#1692](https://redirect.github.com/actions/cache/pull/1692) > > ### 5.0.1 > > * Update `@azure/storage-blob` to `^12.29.1` via `@actions/cache@5.0.1` [#1685](https://redirect.github.com/actions/cache/pull/1685) > > ### 5.0.0 > > > [!IMPORTANT] > > `actions/cache@v5` runs on the Node.js 24 runtime and requires a minimum Actions Runner version of `2.327.1`. ... (truncated) Commits * [`27d5ce7`](https://github.com/actions/cache/commit/27d5ce7f107fe9357f9df03efb73ab90386fccae) Merge pull request [#1747](https://redirect.github.com/actions/cache/issues/1747) from actions/yacaovsnc/update-dependency * [`f280785`](https://github.com/actions/cache/commit/f280785d7b6e1884c7d12b9136eb0f4a1574fcfd) licensed changes * [`619aeb1`](https://github.com/actions/cache/commit/619aeb1606e195be0b36fd0ff68dcf1aff6b65a7) npm run build generated dist files * [`bcf16c2`](https://github.com/actions/cache/commit/bcf16c2893940a4899761e55c7ac3c1cf88a04f6) Update ts-http-runtime to 0.3.5 * See full diff in [compare view](https://github.com/actions/cache/compare/668228422ae6a00e4ad889ee87cd7109ec5666a7...27d5ce7f107fe9357f9df03efb73ab90386fccae) Updates `docker/login-action` from 4.0.0 to 4.1.0 Release notes *Sourced from [docker/login-action's releases](https://github.com/docker/login-action/releases).* > v4.1.0 > ------ > > * Fix scoped Docker Hub cleanup path when registry is omitted by [`@crazy-max`](https://github.com/crazy-max) in [docker/login-action#945](https://redirect.github.com/docker/login-action/pull/945) > * Bump `@aws-sdk/client-ecr` and `@aws-sdk/client-ecr-public` to 3.1020.0 in [docker/login-action#930](https://redirect.github.com/docker/login-action/pull/930) > * Bump `@docker/actions-toolkit` from 0.77.0 to 0.86.0 in [docker/login-action#932](https://redirect.github.com/docker/login-action/pull/932) [docker/login-action#936](https://redirect.github.com/docker/login-action/pull/936) > * Bump brace-expansion from 1.1.12 to 1.1.13 in [docker/login-action#952](https://redirect.github.com/docker/login-action/pull/952) > * Bump fast-xml-parser from 5.3.4 to 5.3.6 in [docker/login-action#942](https://redirect.github.com/docker/login-action/pull/942) > * Bump flatted from 3.3.3 to 3.4.2 in [docker/login-action#944](https://redirect.github.com/docker/login-action/pull/944) > * Bump glob from 10.3.12 to 10.5.0 in [docker/login-action#940](https://redirect.github.com/docker/login-action/pull/940) > * Bump handlebars from 4.7.8 to 4.7.9 in [docker/login-action#949](https://redirect.github.com/docker/login-action/pull/949) > * Bump http-proxy-agent and https-proxy-agent to 8.0.0 in [docker/login-action#937](https://redirect.github.com/docker/login-action/pull/937) > * Bump lodash from 4.17.23 to 4.18.1 in [docker/login-action#958](https://redirect.github.com/docker/login-action/pull/958) > * Bump minimatch from 3.1.2 to 3.1.5 in [docker/login-action#941](https://redirect.github.com/docker/login-action/pull/941) > * Bump picomatch from 4.0.3 to 4.0.4 in [docker/login-action#948](https://redirect.github.com/docker/login-action/pull/948) > * Bump undici from 6.23.0 to 6.24.1 in [docker/login-action#938](https://redirect.github.com/docker/login-action/pull/938) > > **Full Changelog**: <https://github.com/docker/login-action/compare/v4.0.0...v4.1.0> Commits * [`4907a6d`](https://github.com/docker/login-action/commit/4907a6ddec9925e35a0a9e82d7399ccc52663121) Merge pull request [#930](https://redirect.github.com/docker/login-action/issues/930) from docker/dependabot/npm\_and\_yarn/aws-sdk-dependenc... * [`1e233e6`](https://github.com/docker/login-action/commit/1e233e691a8881d7f35ca7c2d5dfaaed80b39636) chore: update generated content * [`6c24ead`](https://github.com/docker/login-action/commit/6c24ead68057f18c30c808a431f0b85dc25663cb) build(deps): bump the aws-sdk-dependencies group with 2 updates * [`ee034d7`](https://github.com/docker/login-action/commit/ee034d70944e3546349cd24295914f139342f1e6) Merge pull request [#958](https://redirect.github.com/docker/login-action/issues/958) from docker/dependabot/npm\_and\_yarn/lodash-4.18.1 * [`1527209`](https://github.com/docker/login-action/commit/1527209db9734bd2352a2dc1a63d79c9aa5358bb) Merge pull request [#937](https://redirect.github.com/docker/login-action/issues/937) from docker/dependabot/npm\_and\_yarn/proxy-agent-depen... * [`d39362a`](https://github.com/docker/login-action/commit/d39362aba4d72f8d9d93e0962119840690133e1b) build(deps): bump lodash from 4.17.23 to 4.18.1 * [`a6f092b`](https://github.com/docker/login-action/commit/a6f092b568105cbb6d9deb7e55e0a4c5c1025fce) chore: update generated content * [`60953f0`](https://github.com/docker/login-action/commit/60953f0bed2120ec69659d271fe18d34bc069779) build(deps): bump the proxy-agent-dependencies group with 2 updates * [`62c6885`](https://github.com/docker/login-action/commit/62c688590fb4ab6c6e89a217ced0a7b2ddcf1340) Merge pull request [#936](https://redirect.github.com/docker/login-action/issues/936) from docker/dependabot/npm\_and\_yarn/docker/actions-to... * [`102c0e6`](https://github.com/docker/login-action/commit/102c0e672992d2e992c89b6f4808d65a353b5a1a) chore: update generated content * Additional commits viewable in [compare view](https://github.com/docker/login-action/compare/b45d80f862d83dbcd57f89517bcf500b2ab88fb2...4907a6ddec9925e35a0a9e82d7399ccc52663121) Updates `graalvm/setup-graalvm` from 1.5.0 to 1.5.2 Release notes *Sourced from [graalvm/setup-graalvm's releases](https://github.com/graalvm/setup-graalvm/releases).* > v1.5.2 > ------ > > What's Changed > -------------- > > * Bump the "all" group with 2 updates across multiple ecosystems by [`@dependabot`](https://github.com/dependabot)[bot] in [graalvm/setup-graalvm#215](https://redirect.github.com/graalvm/setup-graalvm/pull/215) > > **Full Changelog**: <https://github.com/graalvm/setup-graalvm/compare/v1.5.1...v1.5.2> > > v1.5.1 > ------ > > What's Changed > -------------- > > * Upgrade dependencies and to Node 24 by [`@fniephaus`](https://github.com/fniephaus) in [graalvm/setup-graalvm#209](https://redirect.github.com/graalvm/setup-graalvm/pull/209) > * Remove unused dependencies and refresh lockfile to clear vulnerable transitive packages by [`@fniephaus`](https://github.com/fniephaus) in [graalvm/setup-graalvm#210](https://redirect.github.com/graalvm/setup-graalvm/pull/210) > * Replace DISCO API with GitHub API for Mandrel latest version resolution. by [`@zakkak`](https://github.com/zakkak) in [graalvm/setup-graalvm#213](https://redirect.github.com/graalvm/setup-graalvm/pull/213) > * Update dependencies by [`@fniephaus`](https://github.com/fniephaus) in [graalvm/setup-graalvm#214](https://redirect.github.com/graalvm/setup-graalvm/pull/214) > > **Full Changelog**: <https://github.com/graalvm/setup-graalvm/compare/v1.5.0...v1.5.1> Commits * [`60c2672`](https://github.com/graalvm/setup-graalvm/commit/60c26726de13f8b90771df4bc1641a52a3159994) Bump version to `1.5.2`. * [`51f7fcd`](https://github.com/graalvm/setup-graalvm/commit/51f7fcd41d3acbb5770751b687b7691ca6f54a27) Add workflow to check GitHub Actions with Macaron. * [`a498fb2`](https://github.com/graalvm/setup-graalvm/commit/a498fb2d82e143311a166882a63fa6ddb35fb900) Set `rootDir` to address rollup warning. * [`840595d`](https://github.com/graalvm/setup-graalvm/commit/840595df27227e88d706fe5df1f0d1ddc51f77a7) Address new lint errors. * [`ca0f421`](https://github.com/graalvm/setup-graalvm/commit/ca0f421bc13ef3afa46283cb6925ce52ebf226bc) Update `devDependencies`. * [`2987039`](https://github.com/graalvm/setup-graalvm/commit/298703979e24fe6f5e31ab94ed78d5a531917d49) Bump the all group with 2 updates * [`2149f39`](https://github.com/graalvm/setup-graalvm/commit/2149f395d36ce12ad4ee5d7f334b26bf081fa555) Bump version to `1.5.1`. * [`05f01b3`](https://github.com/graalvm/setup-graalvm/commit/05f01b3b353979f44248c665bab95545c26fedb1) Regenerate dist/ files. * [`e1a66bd`](https://github.com/graalvm/setup-graalvm/commit/e1a66bd13e125f8eeabe25a94254105dc769d475) Refresh locked dependencies to resolve npm audit findings 🤖 * [`671c7d4`](https://github.com/graalvm/setup-graalvm/commit/671c7d4a09ffee0212d94d75dd48d6c68dbc1d79) Replace DISCO API with GitHub API for Mandrel latest version resolution. ([#213](https://redirect.github.com/graalvm/setup-graalvm/issues/213)) * Additional commits viewable in [compare view](https://github.com/graalvm/setup-graalvm/compare/f744c72a42b1995d7b0cbc314bde4bace7ac1fe1...60c26726de13f8b90771df4bc1641a52a3159994) Updates `mikepenz/release-changelog-builder-action` from 6.1.1 to 6.2.1 Release notes *Sourced from [mikepenz/release-changelog-builder-action's releases](https://github.com/mikepenz/release-changelog-builder-action/releases).* > v6.2.1 > ------ > > 🐛 Fixes > ------- > > * fix: handle multi-line commit bodies in git log parsing > + PR: [#1553](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1553) > > 💬 Other > ------- > > * chore: remove Renovate workflow > + PR: [#1551](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1551) > > Contributors: > ------------- > > * [`@mikepenz`](https://github.com/mikepenz) > > v6.2.0 > ------ > > 💬 Other > ------- > > * Security hardening: Renovate, SHA-pinned actions, least-privilege permissions > + PR: [#1536](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1536) > * fix: use PR author for commit-dist job condition > + PR: [#1541](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1541) > > 📦 Dependencies > -------------- > > * Bump actions/upload-artifact from 6 to 7 > + PR: [#1523](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1523) > * Bump mikepenz/action-gh-release from 1 to 2 > + PR: [#1529](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1529) > * Bump flatted from 3.3.3 to 3.4.2 > + PR: [#1531](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1531) > * Bump the dev-dependencies group with 4 updates > + PR: [#1532](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1532) > * Bump vitest from 4.0.18 to 4.1.0 > + PR: [#1533](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1533) > * Bump https-proxy-agent from 7.0.6 to 8.0.0 > + PR: [#1534](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1534) > * Bump picomatch from 4.0.3 to 4.0.4 > + PR: [#1535](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1535) > * chore(deps): update dependency glob to v11.1.0 [security] > + PR: [#1537](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1537) > * chore(deps): pin mikepenz/release-changelog-builder-action action to d7b8cec > + PR: [#1539](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1539) > * chore(deps): update dependency undici to v7 > + PR: [#1540](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1540) > * chore: upgrade TypeScript to v6 > + PR: [#1543](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1543) > * chore: pin all dependencies to exact versions > + PR: [#1544](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1544) > * chore(deps): update mikepenz/release-changelog-builder-action digest to a77ddc5 ... (truncated) Commits * [`bcae711`](https://github.com/mikepenz/release-changelog-builder-action/commit/bcae7115752d4ed746ff92feb666574428a79415) Merge pull request [#1554](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1554) from mikepenz/develop * [`5795a33`](https://github.com/mikepenz/release-changelog-builder-action/commit/5795a331a1896dc0d5df89bc33a6eb5f85ec3381) Merge pull request [#1553](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1553) from mikepenz/fix/multiline-commit-body-parsing * [`f5544cb`](https://github.com/mikepenz/release-changelog-builder-action/commit/f5544cb178b60efb5ed9c2103aec3ae8d1347aab) fix: use git %x00/%x1f format placeholders instead of literal bytes * [`7ebd13b`](https://github.com/mikepenz/release-changelog-builder-action/commit/7ebd13b3034b0e0464e3cc5cc63a215af1670fa3) fix: use non-printable separators for robust git log parsing * [`787f65d`](https://github.com/mikepenz/release-changelog-builder-action/commit/787f65d59db64ae02a78eadabe1caa8b270adc8d) fix: handle multi-line commit bodies in git log parsing * [`1d37aec`](https://github.com/mikepenz/release-changelog-builder-action/commit/1d37aec5da47494e13cc58a287454b75bc26d516) Merge pull request [#1551](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1551) from mikepenz/chore/remove-renovate-workflow * [`a8e74a6`](https://github.com/mikepenz/release-changelog-builder-action/commit/a8e74a6c873da1027f31c319e4a4cd2672fb6e5f) chore: override vite to 8.0.5 to fix vulnerabilities * [`202a06f`](https://github.com/mikepenz/release-changelog-builder-action/commit/202a06fc65105d3872e2a97b05c4716008434838) chore: remove Renovate workflow (using self-hosted app instead) * [`2cb9bef`](https://github.com/mikepenz/release-changelog-builder-action/commit/2cb9befdbc05f65b8354cc9873cd506509bd0782) Merge pull request [#1547](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1547) from mikepenz/develop * [`0cc2898`](https://github.com/mikepenz/release-changelog-builder-action/commit/0cc28988c351cc996275143ae3ea584dcc19d31d) Merge pull request [#1546](https://redirect.github.com/mikepenz/release-changelog-builder-action/issues/1546) from mikepenz/renovate/glob-13.x * Additional commits viewable in [compare view](https://github.com/mikepenz/release-changelog-builder-action/compare/a34a8009a9588bb86b02a873cf592440e96a5da8...bcae7115752d4ed746ff92feb666574428a79415) Updates `actions/upload-artifact` from 7.0.0 to 7.0.1 Release notes *Sourced from [actions/upload-artifact's releases](https://github.com/actions/upload-artifact/releases).* > v7.0.1 > ------ > > What's Changed > -------------- > > * Update the readme with direct upload details by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#795](https://redirect.github.com/actions/upload-artifact/pull/795) > * Readme: bump all the example versions to v7 by [`@danwkennedy`](https://github.com/danwkennedy) in [actions/upload-artifact#796](https://redirect.github.com/actions/upload-artifact/pull/796) > * Include changes in typespec/ts-http-runtime 0.3.5 by [`@yacaovsnc`](https://github.com/yacaovsnc) in [actions/upload-artifact#797](https://redirect.github.com/actions/upload-artifact/pull/797) > > **Full Changelog**: <https://github.com/actions/upload-artifact/compare/v7...v7.0.1> Commits * [`043fb46`](https://github.com/actions/upload-artifact/commit/043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) Merge pull request [#797](https://redirect.github.com/actions/upload-artifact/issues/797) from actions/yacaovsnc/update-dependency * [`634250c`](https://github.com/actions/upload-artifact/commit/634250c1388765ea7ed0f053e636f1f399000b94) Include changes in typespec/ts-http-runtime 0.3.5 * [`e454baa`](https://github.com/actions/upload-artifact/commit/e454baaac2be505c9450e11b8f3215c6fc023ce8) Readme: bump all the example versions to v7 ([#796](https://redirect.github.com/actions/upload-artifact/issues/796)) * [`74fad66`](https://github.com/actions/upload-artifact/commit/74fad66b98a6d799dc004d3353ccd0e6f6b2530e) Update the readme with direct upload details ([#795](https://redirect.github.com/actions/upload-artifact/issues/795)) * See full diff in [compare view](https://github.com/actions/upload-artifact/compare/bbbca2ddaa5d8feaa63e36b76fdaad77386f024f...043fb46d1a93c77aae656e7c1c64a875d1fc6a0a) Updates `anchore/scan-action` from 7.3.2 to 7.4.0 Release notes *Sourced from [anchore/scan-action's releases](https://github.com/anchore/scan-action/releases).* > v7.4.0 > ------ > > * chore: update to node 24 ([#629](https://redirect.github.com/anchore/scan-action/issues/629)) [[`@kzantow`](https://github.com/kzantow)] > * fix(dev): move to esbuild ([#601](https://redirect.github.com/anchore/scan-action/issues/601)) [[`@willmurphyscode`](https://github.com/willmurphyscode)] > * chore: update to ES modules + update `@actions/*` ([#595](https://redirect.github.com/anchore/scan-action/issues/595)) [[`@kzantow`](https://github.com/kzantow)] > > ⬆️ Dependencies > --------------- > > * chore(deps): update Grype to v0.110.0 ([#618](https://redirect.github.com/anchore/scan-action/issues/618)) [@[anchore-actions-token-generator[bot]](https://github.com/apps/anchore-actions-token-generator)] > * chore(deps-dev): bump tar 7.5.11 ([#620](https://redirect.github.com/anchore/scan-action/issues/620)) [@[dependabot[bot]](https://github.com/apps/dependabot)] > * chore(deps): bump undici 6.24.1 ([#622](https://redirect.github.com/anchore/scan-action/issues/622)) [@[dependabot[bot]](https://github.com/apps/dependabot)] > * chore: bump fast-xml-parser 5.5.7 ([#626](https://redirect.github.com/anchore/scan-action/issues/626)) [@[dependabot[bot]](https://github.com/apps/dependabot)] Commits * [`e116508`](https://github.com/anchore/scan-action/commit/e1165082ffb1fe366ebaf02d8526e7c4989ea9d2) chore: bump fast-xml-parser from 5.5.6 to 5.5.7 + setup-node ([#631](https://redirect.github.com/anchore/scan-action/issues/631)) * [`382a23a`](https://github.com/anchore/scan-action/commit/382a23a5be86412134bdf4a65e1a18943e5d31ac) chore(deps): update Grype to v0.110.0 ([#618](https://redirect.github.com/anchore/scan-action/issues/618)) * [`2898213`](https://github.com/anchore/scan-action/commit/28982132458e82c788c1b254d367e19d69a896a5) chore: update to node 24 ([#629](https://redirect.github.com/anchore/scan-action/issues/629)) * [`4e1eb5b`](https://github.com/anchore/scan-action/commit/4e1eb5b6d4ff459c3b0ef7f2ea4de674c94d4353) chore: update to modules and bump all deps (required for new [`@actions`](https://github.com/actions) librari... * [`8ed60d1`](https://github.com/anchore/scan-action/commit/8ed60d1353b11a3d328c30da9f63cacbdd91b37b) chore(deps): bump actions/setup-node from 6.2.0 to 6.3.0 ([#617](https://redirect.github.com/anchore/scan-action/issues/617)) * [`5a271d2`](https://github.com/anchore/scan-action/commit/5a271d28d1a95246a5ab1fac675a77692ed468ec) chore(deps-dev): bump lint-staged from 16.3.1 to 16.3.2 ([#619](https://redirect.github.com/anchore/scan-action/issues/619)) * [`6d37af2`](https://github.com/anchore/scan-action/commit/6d37af257493532b84fda2c1deeac102db78d1dc) chore(deps-dev): bump jest from 30.2.0 to 30.3.0 ([#625](https://redirect.github.com/anchore/scan-action/issues/625)) * [`50a8160`](https://github.com/anchore/scan-action/commit/50a8160242150b375f887fa9c071755295719cf6) chore(deps-dev): bump tar from 7.5.10 to 7.5.11 ([#620](https://redirect.github.com/anchore/scan-action/issues/620)) * [`daeb723`](https://github.com/anchore/scan-action/commit/daeb723982a29db0a021b5fa3af65d08e1f891c8) chore(deps): bump undici from 6.23.0 to 6.24.1 ([#622](https://redirect.github.com/anchore/scan-action/issues/622)) * [`6471a7e`](https://github.com/anchore/scan-action/commit/6471a7ecdb0c416a386ad58b1064cbc154d0221e) chore(deps): bump fast-xml-parser from 5.3.6 to 5.5.6 ([#626](https://redirect.github.com/anchore/scan-action/issues/626)) * Additional commits viewable in [compare view](https://github.com/anchore/scan-action/compare/7037fa011853d5a11690026fb85feee79f4c946c...e1165082ffb1fe366ebaf02d8526e7c4989ea9d2) Updates `github/codeql-action` from 4.33.0 to 4.35.2 Release notes *Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).* > v4.35.2 > ------- > > * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795) > * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789) > * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794) > * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807) > * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823) > > v4.35.1 > ------- > > * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781) > > v4.35.0 > ------- > > * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767) > * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773) > > v4.34.1 > ------- > > * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762) > > v4.34.0 > ------- > > * Added an experimental change which disables TRAP caching when [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://redirect.github.com/github/codeql-action/pull/3569) > * We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://redirect.github.com/github/codeql-action/pull/3584) > * Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://redirect.github.com/github/codeql-action/pull/3585) Changelog *Sourced from [github/codeql-action's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850) > * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852) > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837) > > 4.35.2 - 15 Apr 2026 > -------------------- > > * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795) > * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789) > * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794) > * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807) > * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823) > > 4.35.1 - 27 Mar 2026 > -------------------- > > * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781) > > 4.35.0 - 27 Mar 2026 > -------------------- > > * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767) > * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773) > > 4.34.1 - 20 Mar 2026 > -------------------- > > * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762) > > 4.34.0 - 20 Mar 2026 > -------------------- > > * Added an experimental change which disables TRAP caching when [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://redirect.github.com/github/codeql-action/pull/3569) > * We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://redirect.github.com/github/codeql-action/pull/3584) > * Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://redirect.github.com/github/codeql-action/pull/3585) > > 4.33.0 - 16 Mar 2026 > -------------------- > > * Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. [#3562](https://redirect.github.com/github/codeql-action/pull/3562) > > To opt out of this change: > > + **Repositories owned by an organization:** Create a custom repository property with the name `github-codeql-file-coverage-on-prs` and the type "True/false", then set this property to `true` in the repository's settings. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). Alternatively, if you are using an advanced setup workflow, you can set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow. > + **User-owned repositories using default setup:** Switch to an advanced setup workflow and set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow. > + **User-owned repositories using advanced setup:** Set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow. > * Fixed [a bug](https://redirect.github.com/github/codeql-action/issues/3555) which caused the CodeQL Action to fail loading repository properties if a "Multi select" repository property was configured for the repository. [#3557](https://redirect.github.com/github/codeql-action/pull/3557) > * The CodeQL Action now loads [custom repository properties](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization) on GitHub Enterprise Server, enabling the customization of features such as `github-codeql-disable-overlay` that was previously only available on GitHub.com. [#3559](https://redirect.github.com/github/codeql-action/pull/3559) > * Once [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) can be configured with OIDC-based authentication for organizations, the CodeQL Action will now be able to accept such configurations. [#3563](https://redirect.github.com/github/codeql-action/pull/3563) > * Fixed the retry mechanism for database uploads. Previously this would fail with the error "Response body object should not be disturbed or locked". [#3564](https://redirect.github.com/github/codeql-action/pull/3564) > * A warning is now emitted if the CodeQL Action detects a repository property whose name suggests that it relates to the CodeQL Action, but which is not one of the properties recognised by the current version of the CodeQL Action. [#3570](https://redirect.github.com/github/codeql-action/pull/3570) ... (truncated) Commits * [`95e58e9`](https://github.com/github/codeql-action/commit/95e58e9a2cdfd71adc6e0353d5c52f41a045d225) Merge pull request [#3824](https://redirect.github.com/github/codeql-action/issues/3824) from github/update-v4.35.2-d2e135a73 * [`6f31bfe`](https://github.com/github/codeql-action/commit/6f31bfe060e817d81e938dbec767969d20031e25) Update changelog for v4.35.2 * [`d2e135a`](https://github.com/github/codeql-action/commit/d2e135a73a39154e3a231aeb49163c4661c5b8b1) Merge pull request [#3823](https://redirect.github.com/github/codeql-action/issues/3823) from github/update-bundle/codeql-bundle-v2.25.2 * [`60abb65`](https://github.com/github/codeql-action/commit/60abb65df09fcf213c398e064c8a80db1f15cdaf) Add changelog note * [`5a0a562`](https://github.com/github/codeql-action/commit/5a0a562209255e956ad8aafcee303294e64eefa2) Update default bundle to codeql-bundle-v2.25.2 * [`6521697`](https://github.com/github/codeql-action/commit/65216971a11ded447a6b76263d5a144519e5eee1) Merge pull request [#3820](https://redirect.github.com/github/codeql-action/issues/3820) from github/dependabot/github\_actions/dot-github/wor... * [`3c45af2`](https://github.com/github/codeql-action/commit/3c45af2dd258e1623af1898da5c86545b514e028) Merge pull request [#3821](https://redirect.github.com/github/codeql-action/issues/3821) from github/dependabot/npm\_and\_yarn/npm-minor-345b93... * [`f1c3393`](https://github.com/github/codeql-action/commit/f1c339364c12f922998186ed897e45e3b4ae8874) Rebuild * [`1024fc4`](https://github.com/github/codeql-action/commit/1024fc496c87e944a93e98d8cf2c09e2c7602a30) Rebuild * [`9dd4cfe`](https://github.com/github/codeql-action/commit/9dd4cfed96030ccdfe1af4daf7a7964322704fed) Bump the npm-minor group across 1 directory with 6 updates * Additional commits viewable in [compare view](https://github.com/github/codeql-action/compare/b1bff81932f5cdfc8695c7752dcee935dcd061c8...95e58e9a2cdfd71adc6e0353d5c52f41a045d225) Updates `anthropics/claude-code-action` from 1.0.75 to 1.0.110 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.110 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.110> > > v1.0.109 > -------- > > What's Changed > -------------- > > * docs: pull\_request\_target guidance and base-action trust model by [`@OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1250](https://redirect.github.com/anthropics/claude-code-action/pull/1250) > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.109> > > v1.0.108 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.108> > > v1.0.107 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.107> > > v1.0.106 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.106> > > v1.0.105 > -------- > > What's Changed > -------------- > > * fix: allow + in branch names (generated by Claude Code EnterWorktree) by [`@awakia`](https://github.com/awakia) in [anthropics/claude-code-action#1248](https://redirect.github.com/anthropics/claude-code-action/pull/1248) > > New Contributors > ---------------- > > * [`@awakia`](https://github.com/awakia) made their first contribution in [anthropics/claude-code-action#1248](https://redirect.github.com/anthropics/claude-code-action/pull/1248) > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.105> > > v1.0.104 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.104> > > v1.0.103 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.103> > > v1.0.102 > -------- > > What's Changed > -------------- > > * chore: bump oven-sh/setup-bun to v2.2.0 (Node.js 24) by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1238](https://redirect.github.com/anthropics/claude-code-action/pull/1238) > * docs: nit updates to security.md by [`@OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1240](https://redirect.github.com/anthropics/claude-code-action/pull/1240) > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.102> > > v1.0.101 > -------- > > **Full Changelog**: <https://github.com/anthropics/claude-code-action/compare/v1...v1.0.101> > > v1.0.100 > -------- > > What's Changed > -------------- > > * Upgrade Claude model from opus-4-6 to opus-4-7 by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1227](https://redirect.github.com/anthropics/claude-code-action/pull/1227) > * fix: pass install.sh binary path to Agent SDK after 0.2.113 bump by [`@ashwin-ant`](https://github.com/ashwin-ant) in [anthropics/claude-code-action#1235](https://redirect.github.com/anthropics/claude-code-action/pull/1235) ... (truncated) Commits * [`ef50f12`](https://github.com/anthropics/claude-code-action/commit/ef50f123a3a9be95b60040d042717517407c7256) chore: bump Claude Code to 2.1.123 and Agent SDK to 0.2.123 * [`b3c0320`](https://github.com/anthropics/claude-code-action/commit/b3c0320e7e8228fcafe773fda5bfd427aa8d1c34) chore: bump Claude Code to 2.1.122 and Agent SDK to 0.2.122 * [`c93e8fe`](https://github.com/anthropics/claude-code-action/commit/c93e8fe8795d6de1ce8b936330d35a0c2440cd96) docs: pull\_request\_target guidance and base-action trust model ([#1250](https://redirect.github.com/anthropics/claude-code-action/issues/1250)) * [`11a9dad`](https://github.com/anthropics/claude-code-action/commit/11a9dadd198803a0cea6bd53da3e0e8a762fc6ea) chore: bump Claude Code to 2.1.121 and Agent SDK to 0.2.121 * [`567fe95`](https://github.com/anthropics/claude-code-action/commit/567fe954a4527e81f132d87d1bdbcc94f7737434) chore: bump Claude Code to 2.1.119 and Agent SDK to 0.2.119 * [`2da6cfa`](https://github.com/anthropics/claude-code-action/commit/2da6cfae686f4d400300e440e0228b971388afed) chore: bump Claude Code to 2.1.120 and Agent SDK to 0.2.120 * [`e58dfa5`](https://github.com/anthropics/claude-code-action/commit/e58dfa55559035499a4982426bb73605e8b5ad8e) chore: bump Claude Code to 2.1.119 and Agent SDK to 0.2.119 * [`6ee201f`](https://github.com/anthropics/claude-code-action/commit/6ee201f0231fbb762d22664f12aad2e7ae0401ae) fix: allow + in branch names (generated by Claude Code EnterWorktree) ([#1248](https://redirect.github.com/anthropics/claude-code-action/issues/1248)) * [`b4d6741`](https://github.com/anthropics/claude-code-action/commit/b4d67413279fc18c6e5de930ae307c4f108714eb) chore: bump Claude Code to 2.1.118 and Agent SDK to 0.2.118 * [`4e5d8b1`](https://github.com/anthropics/claude-code-action/commit/4e5d8b13ca281a6d163cdb287d8917b216e00d6f) chore: bump Claude Code to 2.1.117 and Agent SDK to 0.2.117 * Additional commits viewable in [compare view](https://github.com/anthropics/claude-code-action/compare/df37d2f0760a4b5683a6e617c9325bc1a36443f6...ef50f123a3a9be95b60040d042717517407c7256) Updates `peter-evans/create-pull-request` from 8.1.0 to 8.1.1 Release notes *Sourced from [peter-evans/create-pull-request's releases](https://github.com/peter-evans/create-pull-request/releases).* > Create Pull Request v8.1.1 > -------------------------- > > What's Changed > -------------- > > * build(deps-dev): bump the npm group with 2 updates by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4305](https://redirect.github.com/peter-evans/create-pull-request/pull/4305) > * build(deps): bump minimatch by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4311](https://redirect.github.com/peter-evans/create-pull-request/pull/4311) > * build(deps): bump the github-actions group with 2 updates by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4316](https://redirect.github.com/peter-evans/create-pull-request/pull/4316) > * build(deps): bump `@tootallnate/once` and jest-environment-jsdom by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4323](https://redirect.github.com/peter-evans/create-pull-request/pull/4323) > * build(deps-dev): bump undici from 6.23.0 to 6.24.0 by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4328](https://redirect.github.com/peter-evans/create-pull-request/pull/4328) > * build(deps-dev): bump flatted from 3.3.1 to 3.4.2 by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4334](https://redirect.github.com/peter-evans/create-pull-request/pull/4334) > * build(deps): bump picomatch by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4339](https://redirect.github.com/peter-evans/create-pull-request/pull/4339) > * build(deps-dev): bump handlebars from 4.7.8 to 4.7.9 by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4344](https://redirect.github.com/peter-evans/create-pull-request/pull/4344) > * build(deps-dev): bump the npm group with 3 updates by [`@dependabot`](https://github.com/dependabot)[bot] in [peter-evans/create-pull-request#4349](https://redirect.github.com/peter-evans/create-pull-request/pull/4349) > * fix: retry post-creation API calls on 422 eventual consistency errors by [`@peter-evans`](https://github.com/peter-evans) in [peter-evans/create-pull-request#4356](https://redirect.github.com/peter-evans/create-pull-request/pull/4356) > > **Full Changelog**: <https://github.com/peter-evans/create-pull-request/compare/v8.1.0...v8.1.1> Commits * [`5f6978f`](https://github.com/peter-evans/create-pull-request/commit/5f6978faf089d4d20b00c7766989d076bb2fc7f1) fix: retry post-creation API calls on 422 eventual consistency errors ([#4356](https://redirect.github.com/peter-evans/create-pull-request/issues/4356)) * [`d32e88d`](https://github.com/peter-evans/create-pull-request/commit/d32e88dac789dcc7906e7d26f69f24116fa9c97d) build(deps-dev): bump the npm group with 3 updates ([#4349](https://redirect.github.com/peter-evans/create-pull-request/issues/4349)) * [`8170bcc`](https://github.com/peter-evans/create-pull-request/commit/8170bccad11c0df62542c04dcaefe36d342dfd39) build(deps-dev): bump handlebars from 4.7.8 to 4.7.9 ([#4344](https://redirect.github.com/peter-evans/create-pull-request/issues/4344)) * [`0041819`](https://github.com/peter-evans/create-pull-request/commit/00418193b417f888dbf1d993c5c0d31d27fdc7de) build(deps): bump picomatch ([#4339](https://redirect.github.com/peter-evans/create-pull-request/issues/4339)) * [`b993918`](https://github.com/peter-evans/create-pull-request/commit/b993918c8536b6d44706130734d5456879762b27) build(deps-dev): bump flatted from 3.3.1 to 3.4.2 ([#4334](https://redirect.github.com/peter-evans/create-pull-request/issues/4334)) * [`36d7c84`](https://github.com/peter-evans/create-pull-request/commit/36d7c8468b48f9c2f8f29e260e82f10d4b90d2bd) build(deps-dev): bump undici from 6.23.0 to 6.24.0 ([#4328](https://redirect.github.com/peter-evans/create-pull-request/issues/4328)) * [`a45d1fb`](https://github.com/peter-evans/create-pull-request/commit/a45d1fb447fcaf601166e405fd4f335cde1a8aa8) build(deps): bump `@tootallnate/once` and jest-environment-jsdom ([#4323](https://redirect.github.com/peter-evans/create-pull-request/issues/4323)) * [`3499eb6`](https://github.com/peter-evans/create-pull-request/commit/3499eb61835cc0015c0b786e203d74b1e8f55e43) build(deps): bump the github-actions group with 2 updates ([#4316](https://redirect.github.com/peter-evans/create-pull-request/issues/4316)) * [`3f3b473`](https://github.com/peter-evans/create-pull-request/commit/3f3b473b8c148f5a7520efb4d1f9a70eea3d9d1f) build(deps): bump minimatch ([#4311](https://redirect.github.com/peter-evans/create-pull-request/issues/4311)) * [`6699836`](https://github.com/peter-evans/create-pull-request/commit/6699836a213cf8b28c4f0408a404a6ac79d4458a) build(deps-dev): bump the npm group with 2 updates ([#4305](https://redirect.github.com/peter-evans/create-pull-request/issues/4305)) * See full diff in [compare view](https://github.com/peter-evans/create-pull-request/compare/c0f553fe549906ede9cf27b5156039d195d2ece0...5f6978faf089d4d20b00c7766989d076bb2fc7f1) Updates `ruby/setup-ruby` from 1.295.0 to 1.306.0 Release notes *Sourced from [ruby/setup-ruby's releases](https://github.com/ruby/setup-ruby/releases).* > v1.306.0 > -------- > > What's Changed > -------------- > > * Add truffleruby-34.0.1,truffleruby+graalvm-34.0.1 by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#909](https://redirect.github.com/ruby/setup-ruby/pull/909) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.305.0...v1.306.0> > > v1.305.0 > -------- > > What's Changed > -------------- > > * Update CRuby releases on Windows by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#908](https://redirect.github.com/ruby/setup-ruby/pull/908) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.304.0...v1.305.0> > > v1.304.0 > -------- > > What's Changed > -------------- > > * Add jruby-10.1.0.0 by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#906](https://redirect.github.com/ruby/setup-ruby/pull/906) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.303.0...v1.304.0> > > v1.303.0 > -------- > > What's Changed > -------------- > > * Add ruby-4.0.3 by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#903](https://redirect.github.com/ruby/setup-ruby/pull/903) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.302.0...v1.303.0> > > v1.302.0 > -------- > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.301.0...v1.302.0> > > v1.301.0 > -------- > > What's Changed > -------------- > > * Add truffleruby-34.0.0,truffleruby+graalvm-34.0.0 by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#901](https://redirect.github.com/ruby/setup-ruby/pull/901) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.300.0...v1.301.0> > > v1.300.0 > -------- > > What's Changed > -------------- > > * Refactor matrix script by [`@ntkme`](https://github.com/ntkme) in [ruby/setup-ruby#897](https://redirect.github.com/ruby/setup-ruby/pull/897) > * Add jruby-10.0.5.0 by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#900](https://redirect.github.com/ruby/setup-ruby/pull/900) > > **Full Changelog**: <https://github.com/ruby/setup-ruby/compare/v1.299.0...v1.300.0> > > v1.299.0 > -------- > > What's Changed > -------------- > > * Update CRuby releases on Windows by [`@ruby-builder-bot`](https://github.com/ruby-builder-bot) in [ruby/setup-ruby#896](https://redirect.github.com/ruby/setup-ruby/pull/896) ... (truncated) Commits * [`c4e5b13`](https://github.com/ruby/setup-ruby/commit/c4e5b1316158f92e3d49443a9d58b31d25ac0f8f) Add truffleruby-34.0.1,truffleruby+graalvm-34.0.1 * [`0cb964f`](https://github.com/ruby/setup-ruby/commit/0cb964fd540e0a24c900370abf38a33466142735) Update CRuby releases on Windows * [`94e4d89`](https://github.com/ruby/setup-ruby/commit/94e4d89d3e6c1c7599e0210d114c5ffb23f1a866) Add jruby-10.1.0.0 * [`60ecfba`](https://github.com/ruby/setup-ruby/commit/60ecfba8750476ff216b59eee3b88218bb5111cc) Add ruby-4.0.3 * [`7372622`](https://github.com/ruby/setup-ruby/commit/7372622e62b60b3cb750dcd2b9e32c247ffec26a) Give a better error for TruffleRuby 34+ on macOS Intel * [`4c56a21`](https://github.com/ruby/setup-ruby/commit/4c56a21280b36d862b5fc31348f463d60bdc55d5) Darwin-x86\_64 is no longer supported on TruffleRuby 34+ * [`5d9c71d`](https://github.com/ruby/setup-ruby/commit/5d9c71d71b5e5c41e2770a23378377fcc39f880b) Add truffleruby-34.0.0,truffleruby+graalvm-34.0.0 * [`e65c17d`](https://github.com/ruby/setup-ruby/commit/e65c17d16e57e481586a6a5a0282698790062f92) Add jruby-10.0.5.0 * [`ba696ad`](https://github.com/ruby/setup-ruby/commit/ba696adf55506673e48342a66e30f1f53cadeae0) Refactor matrix script * [`2327de0`](https://github.com/ruby/setup-ruby/commit/2327de0bdc11657e6bed81a43cae73251edb97a0) TruffleRuby 34+ does not support macOS Intel * Additional commits viewable in [compare view](https://github.com/ruby/setup-ruby/compare/319994f95fa847cf3fb3cd3dbe89f6dcde9f178f...c4e5b1316158f92e3d49443a9d58b31d25ac0f8f) Updates `robfrank/kamal-accessories-updater` from 26.1.0 to 26.4.0 Release notes *Sourced from [robfrank/kamal-accessories-updater's releases](https://github.com/robfrank/kamal-accessories-updater/releases).* > Release v26.4.0 > --------------- > > What's Changed > -------------- > > * Update changelog generation to exclude current version tag and include all commits (d86845f) > * Bump the github-actions group across 1 directory with 3 updates [skip ci] (778ca56) > * Bump the github-actions group across 1 directory with 3 updates (37b0f65) > > Usage > ----- > > To use this version in your workflows: > > ``` > - name: Update Kamal accessories > uses: robfrank/kamal-accessories-updater@v26.4.0 > with: > config-dir: config > mode: update-all > ``` > > **Full Changelog**: <https://github.com/robfrank/kamal-accessories-updater/compare/v26.1.0...v26.4.0> Commits * [`d86845f`](https://github.com/robfrank/kamal-accessories-updater/commit/d86845f3db1fe913bedd2ce9a9bc32bb157cd1a0) Update changelog generation to exclude current version tag and include all co... * [`778ca56`](https://github.com/robfrank/kamal-accessories-updater/commit/778ca56b2004026a71a2605d1921841ea39597a2) Bump the github-actions group across 1 directory with 3 updates [skip ci] * [`37b0f65`](https://github.com/robfrank/kamal-accessories-updater/commit/37b0f65540eb9ebc4cc4816e318745fa105406fc) Bump the github-actions group across 1 directory with 3 updates * See full diff in [compare view](https://github.com/robfrank/kamal-accessories-updater/compare/e567349279c21bcf02f2467ed3b2d8b5555a1436...d86845f3db1fe913bedd2ce9a9bc32bb157cd1a0) Updates `actions/setup-node` from 6.3.0 to 6.4.0 Release notes *Sourced from [actions/setup-node's releases](https://github.com/actions/setup-node/releases).* > v6.4.0 > ------ > > What's Changed > -------------- > > ### Dependency updates: > > * Upgrade [`@actions`](https://github.com/actions) dependencies by [`@Copilot`](https://github.com/Copilot) in [actions/setup-node#1525](https://redirect.github.com/actions/setup-node/pull/1525) > * Update Node.js versions in versions.yml and bump package to v6.4.0 by [`@priya-kinthali`](https://github.com/priya-kinthali) in [actions/setup-node#1533](https://redirect.github.com/actions/setup-node/pull/1533) > > New Contributors > ---------------- > > * [`@Copilot`](https://github.com/Copilot) made their first contribution in [actions/setup-node#1525](https://redirect.github.com/actions/setup-node/pull/1525) > > **Full Changelog**: <https://github.com/actions/setup-node/compare/v6...v6.4.0> Commits
Bumps the github-actions group with 2 updates: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action) and [github/codeql-action](https://github.com/github/codeql-action). Updates `anthropics/claude-code-action` from 1.0.107 to 1.0.111 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.111 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.111> > > v1.0.110 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.110> > > v1.0.109 > -------- > > What's Changed > -------------- > > * docs: pull\_request\_target guidance and base-action trust model by [`@OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1250](https://redirect.github.com/anthropics/claude-code-action/pull/1250) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.109> > > v1.0.108 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.108> Commits * [`fefa07e`](anthropics/claude-code-action@fefa07e) chore: bump Claude Code to 2.1.126 and Agent SDK to 0.2.126 * [`ef50f12`](anthropics/claude-code-action@ef50f12) chore: bump Claude Code to 2.1.123 and Agent SDK to 0.2.123 * [`b3c0320`](anthropics/claude-code-action@b3c0320) chore: bump Claude Code to 2.1.122 and Agent SDK to 0.2.122 * [`c93e8fe`](anthropics/claude-code-action@c93e8fe) docs: pull\_request\_target guidance and base-action trust model ([#1250](https://redirect.github.com/anthropics/claude-code-action/issues/1250)) * [`11a9dad`](anthropics/claude-code-action@11a9dad) chore: bump Claude Code to 2.1.121 and Agent SDK to 0.2.121 * See full diff in [compare view](anthropics/claude-code-action@567fe95...fefa07e) Updates `github/codeql-action` from 4.35.2 to 4.35.3 Release notes *Sourced from [github/codeql-action's releases](https://github.com/github/codeql-action/releases).* > v4.35.3 > ------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837) > * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850) > * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853) > * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852) > * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865) Changelog *Sourced from [github/codeql-action's changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md).* > CodeQL Action Changelog > ======================= > > See the [releases page](https://github.com/github/codeql-action/releases) for the relevant changes to the CodeQL CLI and language packs. > > [UNRELEASED] > ------------ > > No user facing changes. > > 4.35.3 - 01 May 2026 > -------------------- > > * *Upcoming breaking change*: Add a deprecation warning for customers using CodeQL version 2.19.3 and earlier. These versions of CodeQL were discontinued on 9 April 2026 alongside GitHub Enterprise Server 3.15, and will be unsupported by the next minor release of the CodeQL Action. [#3837](https://redirect.github.com/github/codeql-action/pull/3837) > * Configurations for private registries that use Cloudsmith or GCP OIDC are now accepted. [#3850](https://redirect.github.com/github/codeql-action/pull/3850) > * Best-effort connection tests for private registries now use `GET` requests instead of `HEAD` for better compatibility with various registry implementations. For NuGet feeds, the test is now always performed against the service index. [#3853](https://redirect.github.com/github/codeql-action/pull/3853) > * Fixed a bug where two diagnostics produced within the same millisecond could overwrite each other on disk, causing one of them to be lost. [#3852](https://redirect.github.com/github/codeql-action/pull/3852) > * Update default CodeQL bundle version to [2.25.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.3). [#3865](https://redirect.github.com/github/codeql-action/pull/3865) > > 4.35.2 - 15 Apr 2026 > -------------------- > > * The undocumented TRAP cache cleanup feature that could be enabled using the `CODEQL_ACTION_CLEANUP_TRAP_CACHES` environment variable is deprecated and will be removed in May 2026. If you are affected by this, we recommend disabling TRAP caching by passing the `trap-caching: false` input to the `init` Action. [#3795](https://redirect.github.com/github/codeql-action/pull/3795) > * The Git version 2.36.0 requirement for improved incremental analysis now only applies to repositories that contain submodules. [#3789](https://redirect.github.com/github/codeql-action/pull/3789) > * Python analysis on GHES no longer extracts the standard library, relying instead on models of the standard library. This should result in significantly faster extraction and analysis times, while the effect on alerts should be minimal. [#3794](https://redirect.github.com/github/codeql-action/pull/3794) > * Fixed a bug in the validation of OIDC configurations for private registries that was added in CodeQL Action 4.33.0 / 3.33.0. [#3807](https://redirect.github.com/github/codeql-action/pull/3807) > * Update default CodeQL bundle version to [2.25.2](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.2). [#3823](https://redirect.github.com/github/codeql-action/pull/3823) > > 4.35.1 - 27 Mar 2026 > -------------------- > > * Fix incorrect minimum required Git version for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158): it should have been 2.36.0, not 2.11.0. [#3781](https://redirect.github.com/github/codeql-action/pull/3781) > > 4.35.0 - 27 Mar 2026 > -------------------- > > * Reduced the minimum Git version required for [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) from 2.38.0 to 2.11.0. [#3767](https://redirect.github.com/github/codeql-action/pull/3767) > * Update default CodeQL bundle version to [2.25.1](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.1). [#3773](https://redirect.github.com/github/codeql-action/pull/3773) > > 4.34.1 - 20 Mar 2026 > -------------------- > > * Downgrade default CodeQL bundle version to [2.24.3](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.24.3) due to issues with a small percentage of Actions and JavaScript analyses. [#3762](https://redirect.github.com/github/codeql-action/pull/3762) > > 4.34.0 - 20 Mar 2026 > -------------------- > > * Added an experimental change which disables TRAP caching when [improved incremental analysis](https://redirect.github.com/github/roadmap/issues/1158) is enabled, since improved incremental analysis supersedes TRAP caching. This will improve performance and reduce Actions cache usage. We expect to roll this change out to everyone in March. [#3569](https://redirect.github.com/github/codeql-action/pull/3569) > * We are rolling out improved incremental analysis to C/C++ analyses that use build mode `none`. We expect this rollout to be complete by the end of April 2026. [#3584](https://redirect.github.com/github/codeql-action/pull/3584) > * Update default CodeQL bundle version to [2.25.0](https://github.com/github/codeql-action/releases/tag/codeql-bundle-v2.25.0). [#3585](https://redirect.github.com/github/codeql-action/pull/3585) > > 4.33.0 - 16 Mar 2026 > -------------------- > > * Upcoming change: Starting April 2026, the CodeQL Action will skip collecting file coverage information on pull requests to improve analysis performance. File coverage information will still be computed on non-PR analyses. Pull request analyses will log a warning about this upcoming change. [#3562](https://redirect.github.com/github/codeql-action/pull/3562) > > To opt out of this change: > > + **Repositories owned by an organization:** Create a custom repository property with the name `github-codeql-file-coverage-on-prs` and the type "True/false", then set this property to `true` in the repository's settings. For more information, see [Managing custom properties for repositories in your organization](https://docs.github.com/en/organizations/managing-organization-settings/managing-custom-properties-for-repositories-in-your-organization). Alternatively, if you are using an advanced setup workflow, you can set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow. > + **User-owned repositories using default setup:** Switch to an advanced setup workflow and set the `CODEQL_ACTION_FILE_COVERAGE_ON_PRS` environment variable to `true` in your workflow. ... (truncated) Commits * [`e46ed2c`](github/codeql-action@e46ed2c) Merge pull request [#3867](https://redirect.github.com/github/codeql-action/issues/3867) from github/update-v4.35.3-8c6e48dbe * [`b73d1d1`](github/codeql-action@b73d1d1) Add changelog entry for [#3853](https://redirect.github.com/github/codeql-action/issues/3853) * [`24e0bb0`](github/codeql-action@24e0bb0) Reorder changelog entries * [`ec298da`](github/codeql-action@ec298da) Update changelog for v4.35.3 * [`8c6e48d`](github/codeql-action@8c6e48d) Merge pull request [#3865](https://redirect.github.com/github/codeql-action/issues/3865) from github/update-bundle/codeql-bundle-v2.25.3 * [`7190983`](github/codeql-action@7190983) Add changelog note * [`2bb2095`](github/codeql-action@2bb2095) Update default bundle to codeql-bundle-v2.25.3 * [`7851e55`](github/codeql-action@7851e55) Merge pull request [#3850](https://redirect.github.com/github/codeql-action/issues/3850) from github/mbg/private-registry/cloudsmith-gcp * [`262a15f`](github/codeql-action@262a15f) Add generic non-printable chars test for OIDC configs * [`a6109b1`](github/codeql-action@a6109b1) Merge pull request [#3853](https://redirect.github.com/github/codeql-action/issues/3853) from github/mbg/start-proxy/improved-checks * Additional commits viewable in [compare view](github/codeql-action@95e58e9...e46ed2c) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
…11 in the github-actions group [skip ci] Bumps the github-actions group with 1 update: [anthropics/claude-code-action](https://github.com/anthropics/claude-code-action). Updates `anthropics/claude-code-action` from 1.0.107 to 1.0.111 Release notes *Sourced from [anthropics/claude-code-action's releases](https://github.com/anthropics/claude-code-action/releases).* > v1.0.111 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.111> > > v1.0.110 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.110> > > v1.0.109 > -------- > > What's Changed > -------------- > > * docs: pull\_request\_target guidance and base-action trust model by [`@OctavianGuzu`](https://github.com/OctavianGuzu) in [anthropics/claude-code-action#1250](https://redirect.github.com/anthropics/claude-code-action/pull/1250) > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.109> > > v1.0.108 > -------- > > **Full Changelog**: <anthropics/claude-code-action@v1...v1.0.108> Commits * [`fefa07e`](anthropics/claude-code-action@fefa07e) chore: bump Claude Code to 2.1.126 and Agent SDK to 0.2.126 * [`ef50f12`](anthropics/claude-code-action@ef50f12) chore: bump Claude Code to 2.1.123 and Agent SDK to 0.2.123 * [`b3c0320`](anthropics/claude-code-action@b3c0320) chore: bump Claude Code to 2.1.122 and Agent SDK to 0.2.122 * [`c93e8fe`](anthropics/claude-code-action@c93e8fe) docs: pull\_request\_target guidance and base-action trust model ([#1250](https://redirect.github.com/anthropics/claude-code-action/issues/1250)) * [`11a9dad`](anthropics/claude-code-action@11a9dad) chore: bump Claude Code to 2.1.121 and Agent SDK to 0.2.121 * See full diff in [compare view](anthropics/claude-code-action@567fe95...fefa07e) [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- Dependabot commands and options You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Adds:
docs/security.mdsection on safe checkout patterns underpull_request_target/workflow_runbase-action/README.mdtrust-model section clarifying the base-action does not enforce trust boundaries; callers should useclaude-code-actionfor untrusted-input workflowsdocs/security.mdpointer to the base-action distinction