ci: Tier 1 OSS security scanners (CodeQL + Dependabot + govulncheck + OSV-Scanner)#128
Merged
Merged
Conversation
Adds GitHub-native + free OSS vulnerability scanners. All tools are 100% free for public repos — no API keys, no external accounts, no metered billing surface. - CodeQL with security-extended query suite (SQL injection, XSS, SSRF, log injection, path traversal, race conditions) - Dependabot for gomod + github-actions (grouped security + version PRs) - govulncheck (reachability-filtered CVE scan; Go-specific) - OSV-Scanner (cross-ecosystem CVE scan against OSV.dev) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
|
You are seeing this message because GitHub Code Scanning has recently been set up for this repository, or this pull request contains the workflow file for the Code Scanning tool. What Enabling Code Scanning Means:
For more information about GitHub Code Scanning, check out the documentation. |
The Tier 1 CodeQL + govulncheck workflows failed on PR #128 because this repo uses `replace instant.dev/common => ../common` and `replace instant.dev/proto => ../proto` in go.mod. The scanners checked out only api, so the sibling paths didn't resolve and the `go build ./...` step exited 1. Fix: each workflow now checks out api into ./api, plus clones public sibling repos InstaNode-dev/common and InstaNode-dev/proto. go build runs in api/, which can now resolve the replace targets. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
govulncheck on PR #128 flagged five Go-stdlib vulnerabilities reachable from production code paths: - GO-2026-4971 net.Dialer panic on NUL byte (Windows) - GO-2026-4977 mail.ParseAddress edge cases - GO-2026-4980 html/template unsafe contexts - GO-2026-4982 html/template execute panic - GO-2026-4986 mail.ParseAddress overflow All fixed in Go 1.25.9–1.25.10. Bumping toolchain closes the reachability paths flagged by govulncheck. Also merges any in-flight master commits onto the scanner-install branch so PR #128 reflects current master state. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Adds GitHub-native + free OSS vulnerability scanners. All tools are 100% free for public repos — no API keys, no external accounts, no metered billing surface.
security-extendedquery suite) — SQL injection, XSS, SSRF, log injection, path traversal, race conditionsCost
Zero. All checks run on free GitHub Actions minutes for public repos.
Test plan
🤖 Generated with Claude Code