feat: support SHA hash pinning for trusted builder workflows#882
Open
kipz wants to merge 1 commit intoslsa-framework:mainfrom
Open
feat: support SHA hash pinning for trusted builder workflows#882kipz wants to merge 1 commit intoslsa-framework:mainfrom
kipz wants to merge 1 commit intoslsa-framework:mainfrom
Conversation
02e32a6 to
c81384a
Compare
Allows reusable workflow builder refs to be specified as a 40-character commit SHA (e.g. abc123...) in addition to semver tag refs. At verification time the SHA is resolved to its associated release tag(s) via the GitHub REST API, and at least one must be a valid vX.Y.Z semver tag. Introduces TagResolver interface and GitHubTagResolver implementation. Set GITHUB_TOKEN to authenticate API requests and avoid rate limiting. Fixes slsa-framework#12 Signed-off-by: James Carnegie <james.carnegie@datadoghq.com>
c81384a to
39f31e1
Compare
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.
Resolves #12
Summary
SHA pinning is immutable: once committed, a SHA cannot change, making it a stronger security guarantee than mutable tags.