security: remediate dependency vulnerabilities across Go and npm#623
Merged
Conversation
Bump vulnerable Go modules to patched releases: - golang.org/x/crypto 0.46.0 -> 0.52.0 - golang.org/x/net 0.47.0 -> 0.55.0 - golang.org/x/sync, x/sys, x/text, x/tools, x/mod - github.com/jackc/pgx/v5 5.9.1 -> 5.9.2 - go 1.26.2 -> 1.26.4 govulncheck now reports zero vulnerabilities. Add npm overrides to force safe transitive deps: - web/app: fast-uri ^3.1.2, postcss ^8.5.10 - web/dashboard: postcss ^8.5.10 Lockfiles regenerated; npm audit clean; prod builds pass. Fix govulncheck workflow param: package -> go-package.
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 all known dependency vulnerabilities flagged by govulncheck and npm audit across the Go backend and both frontends.
Go standard library (the two that fail CI today)
crypto/x509. Fixed in go1.26.4.io.ReadAll, and emailDialAndSend. Fixed in go1.26.4.Both are resolved by bumping the
godirective 1.26.2 → 1.26.4, so the govulncheck action installs the patched toolchain.Go module bumps
golang.org/x/crypto0.46.0 → 0.52.0golang.org/x/net0.47.0 → 0.55.0golang.org/x/sync,x/sys,x/text,x/tools,x/modgithub.com/jackc/pgx/v55.9.1 → 5.9.2npm
web/app: overrides forcingfast-uri ^3.1.2,postcss ^8.5.10web/dashboard: override forcingpostcss ^8.5.10npm auditclean; prod builds pass for both apps.CI
package→go-package.Verification
go build ./...✅govulncheck ./...→ No vulnerabilities found ✅ (on go1.26.4)npm auditclean + prod builds pass forweb/appandweb/dashboard✅