{{ message }}
fix(security): remediate undici vulnerabilities#2322
Merged
Conversation
Bump pnpm override to undici@>=6.27.0 to address four advisories: - GHSA-vxpw-j846-p89q (HIGH, CVSS 7.5): WebSocket DoS via fragment count bypass — unbounded memory growth from many small/empty continuation frames that each pass per-frame validation. - GHSA-p88m-4jfj-68fv (MEDIUM, CVSS 5.9): HTTP header injection via Set-Cookie percent-decoding. - GHSA-35p6-xmwp-9g52 (LOW): HTTP response queue poisoning via keep-alive socket reuse. - GHSA-g8m3-5g58-fq7m (LOW): Set-Cookie SameSite attribute downgrade via permissive substring matching. Fix lands undici@6.27.0 (or 7.28.0 / 8.5.0). The override bumps transitive consumers (@octokit/request, @actions/http-client) to undici 8.5.0 to satisfy the new floor. dist/ regenerated to reflect the bundled undici update. No source code changes — pure dependency remediation.
This was referenced Jun 20, 2026
Closed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Remediates four Dependabot alerts for the transitive
undicidependency (consumed via@octokit/request,@actions/http-client, etc.) by bumping the pnpm override floor from>=6.23.0to>=6.27.0. This pulls in undici 8.5.0 transitively and closes all four advisories without modifying any source code.Advisories Addressed
Changes
pnpm-workspace.yaml:undici@<6.23.0: '>=6.23.0'→undici@<6.27.0: '>=6.27.0'pnpm-lock.yaml:undici@6.25.0→undici@8.5.0for transitive consumers.github/actions/*/dist/index.js: rebuilt to bundle the new undici (size increased as expected from updated vendored code).changeset/security-undici-vulnerability-fix.md: patch-level changeset for@bfra.me/.githubScope
Pure dependency remediation — no source code changes, no unrelated dependency bumps.
pnpm auditnow reports zero undici findings (advisories 54, 55, 56, 57 will auto-resolve on merge).Verification
pnpm run type-check: ✅ passpnpm run lint: ✅ passpnpm run test: ✅ pass (641 tests)pnpm run build: ✅ pass (3 actions rebuilt)pnpm audit: undici advisories resolved; only pre-existing esbuild + js-yaml advisories remain (covered by PR fix(security): remediate esbuild vulnerability #2292)Note
undici 8.x requires Node.js
>=22.19.0. All actions in this repo already usenode24runtime, and the repo's own.nvmrc/package.json#enginestrack Node 24, so this is consistent with the project's Node baseline.