-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Link attestor proposed changes #204
Merged
Merged
Conversation
This file contains 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
fix/202/we now unmarshal the time in the attestation collection correctly Co-authored-by: Cole <cole@testifysec.com>
…elds Signed-off-by: John Kjell <john@testifysec.com>
jkjell
approved these changes
Apr 4, 2024
ChaosInTheCRD
commented
Apr 5, 2024
@@ -196,8 +196,8 @@ func (p *Provenance) Attest(ctx *attestation.AttestationContext) error { | |||
return err | |||
} | |||
|
|||
p.PbProvenance.RunDetails.Metadata.StartedOn = timestamppb.New(ctx.StartTime()) | |||
p.PbProvenance.RunDetails.Metadata.FinishedOn = timestamppb.New(ctx.EndTime()) | |||
p.PbProvenance.RunDetails.Metadata.StartedOn = timestamppb.New(attestor.StartTime) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh duh, yeah that makes sense
ChaosInTheCRD
added a commit
that referenced
this pull request
May 9, 2024
* Initial link attestor Signed-off-by: John Kjell <john@testifysec.com> * refactor: move gitoid code to cyrptoutil, use digestvalue everywhere (#139) When the functionality to calculate gitoids was added, there was a bit of tech debt incurred since they didn't implement hash.Hash. This remedies this with an admitedly hacky implementation of hash.Hash that wraps the gitoid code. This also standardizes our cryptoutil fucntions around the DigestValue struct that was added around this time to differentiate between gitoids and regular hash functions. Signed-off-by: Mikhail Swift <mikhail@testifysec.com> Signed-off-by: John Kjell <john@testifysec.com> * chore: bump actions/upload-artifact from 4.2.0 to 4.3.0 (#142) Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.2.0 to 4.3.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@694cdab...26f96df) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Signed-off-by: John Kjell <john@testifysec.com> * chore: bump github/codeql-action from 3.23.1 to 3.23.2 (#143) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 3.23.1 to 3.23.2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@0b21cf2...b7bf0a3) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Meadows <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> * Adding job to auto cut releases (#141) adding job to auto cut releases Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> * fixing error in github actions workflow (#147) fixing error in workflow Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> * RunAttestors refactor (#131) * improving run attestors Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * finalising changes. Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * improving run attestors Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * finalising changes. Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * addressing review, restoring run type order Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * updating error handling logic Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * updating to go 1.21 for errors.Join Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> --------- Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: Tom Meadows <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> * Adding workaround due to failing workflows (#145) adding workaround due to failing workflows Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> * Checking policy signature against cert constraints (#144) * adding logic so policy signature can be checked against constraints * threaded options into policy validation functionary --------- Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: John Kjell <john@testifysec.com> Co-authored-by: John Kjell <john@testifysec.com> Signed-off-by: John Kjell <john@testifysec.com> * [StepSecurity] ci: Harden GitHub Actions (#148) Signed-off-by: StepSecurity Bot <bot@stepsecurity.io> Signed-off-by: John Kjell <john@testifysec.com> * Add import for init and export variables Signed-off-by: John Kjell <john@testifysec.com> * Add mulitple results to run to allow exporting attestors to indivudal files Signed-off-by: John Kjell <john@testifysec.com> * Add collection to result array Signed-off-by: John Kjell <john@testifysec.com> * Replace export parameters in run with attestor option Signed-off-by: John Kjell <john@testifysec.com> * Fix golang lint isues Signed-off-by: John Kjell <john@testifysec.com> * Update link attestor testing Signed-off-by: John Kjell <john@testifysec.com> * Add SLSA attestor Signed-off-by: John Kjell <john@testifysec.com> * Add interface for product attestor Signed-off-by: John Kjell <john@testifysec.com> * Add more attestor interfaces Signed-off-by: John Kjell <john@testifysec.com> * Address some review feedback, licenses, and golanglint Signed-off-by: John Kjell <john@testifysec.com> * More golangcilint errors Signed-off-by: John Kjell <john@testifysec.com> * WIP - Improve testing interfaces for exposing data fields Signed-off-by: John Kjell <john@testifysec.com> * added changes * adding changes to merge into main PR * Link attestor proposed changes (#204) * unmarshal the time in the attestation collection correctly (#203) * add StepName to AttestorContext * use CollectionAttestion to properly set start/end times --------- Signed-off-by: John Kjell <john@testifysec.com> Co-authored-by: Cole Kennedy <colek42@gmail.com> Co-authored-by: Cole <cole@testifysec.com> Co-authored-by: John Kjell <john@testifysec.com> * Passing SLSA Attest tests for GitHub and GitLab Signed-off-by: John Kjell <john@testifysec.com> * Clean up Signed-off-by: John Kjell <john@testifysec.com> * Add attestation test for link attestor Signed-off-by: John Kjell <john@testifysec.com> * Add data function for git interface and remove unused code Signed-off-by: John Kjell <john@testifysec.com> * adding warning mesage for slsa attestor Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * Try to gracefully handle gitlab jwt Signed-off-by: John Kjell <john@testifysec.com> * ran go mod tidy Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> * ensuring link and slsa attestation exporting is optional Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> --------- Signed-off-by: John Kjell <john@testifysec.com> Signed-off-by: Mikhail Swift <mikhail@testifysec.com> Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: chaosinthecrd <tom@tmlabs.co.uk> Signed-off-by: Tom Meadows <tom@tmlabs.co.uk> Signed-off-by: StepSecurity Bot <bot@stepsecurity.io> Co-authored-by: Mikhail Swift <mikhail@testifysec.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Meadows <tom@tmlabs.co.uk> Co-authored-by: StepSecurity Bot <bot@stepsecurity.io> Co-authored-by: Cole Kennedy <colek42@gmail.com> Co-authored-by: Cole <cole@testifysec.com>
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.
Further proposed changes to merge into @jkjell 's PR for link / slsa attestors.