feat: complete OIDC machine identity commit signing dogfooding#120
Merged
feat: complete OIDC machine identity commit signing dogfooding#120
Conversation
Implement end-to-end commit signing with ephemeral machine identities and OIDC binding for GitHub Actions CI/CD workflows. Changes: - Extend Attestation struct: commit_sha, commit_message, author, oidc_binding - Create OidcBinding struct: issuer, subject, audience, platform, normalized_claims - Implement sign_commit_with_identity() SDK workflow with full Rustdoc - Add auths sign-commit CLI command with context injection and attestation display - Extend verify-commit to read and display OIDC binding from refs/auths/commits/<sha> - 6 integration tests covering signing with/without OIDC, serialization, multiple commits - Unit tests for SignCommitParams, OidcMachineIdentity, OidcBinding structures - Document feature in OIDC_COMMIT_SIGNING.md (user guide, architecture, FAQ) - E2E validation checklist for live GitHub Actions workflow - Update all Attestation initializers across SDK and test code Enables: - GitHub Actions workflow signs commits with OIDC-bound machine identities - Attestations stored at refs/auths/commits/<commit-sha> (git-native) - Local verification: auths verify-commit <sha> shows OIDC context (repo, actor, run_id) - Cryptographic proof of CI/CD workload without central registry
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Auths Commit Verification
Result: ✅ 1/1 commits verified |
Auths Commit Verification
Result: ✅ 2/2 commits verified |
Auths Commit Verification
Result: ✅ 3/3 commits verified |
Auths Commit Verification
Result: ✅ 4/4 commits verified |
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.
Implement end-to-end commit signing with ephemeral machine identities and
OIDC binding for GitHub Actions CI/CD workflows.
Changes:
Enables: