Layer 4 supply-chain trust signals: CodeQL, Scorecard, Dependabot#2
Merged
Conversation
Adds the trust signals that were missing (SBOM + cosign signing already shipped in release-artifacts.yml): - .github/workflows/codeql.yml: CodeQL Go analysis (build-mode none, so no C/libbpf toolchain needed), security-and-quality queries, on push/PR/weekly. - .github/workflows/scorecard.yml: OpenSSF Scorecard, publishes to the public Scorecard API and uploads SARIF to code scanning. - .github/dependabot.yml: weekly grouped updates for Go modules and the pinned GitHub Actions. - README: CI / CodeQL / Scorecard / license badges + a Supply-chain posture section with a cosign verify-blob example. - docs/supply-chain.md: in-repo controls table plus a checklist of maintainer-side repo settings that can't be set from files (branch protection, secret-scanning push protection, OpenSSF Best Practices badge registration). No untrusted github.event.* input is interpolated into any run: step in the new workflows. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This was referenced Jun 19, 2026
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.
Why
Cheap, high-credibility trust signals for getting eBPF projects to adopt bpfcompat in their CI. SBOM + cosign keyless signing already shipped in
release-artifacts.yml; this adds the missing pieces.What
.github/workflows/codeql.yml— CodeQL Go static analysis,build-mode: none(no C/libbpf toolchain needed),security-and-qualityqueries; push/PR/weekly..github/workflows/scorecard.yml— OpenSSF Scorecard, publishes to the public Scorecard API + SARIF to code scanning..github/dependabot.yml— weekly grouped updates for Go modules and pinned GitHub Actions.cosign verify-blobexample.docs/supply-chain.md— in-repo controls table + checklist of maintainer-side settings that can't be set from files (branch protection, secret-scanning push protection, OpenSSF Best Practices registration).Notes
github.event.*input is interpolated into anyrun:step in the new workflows.scorecard.ymlrun onmainsucceeds.🤖 Generated with Claude Code