Documentation ¶
Index ¶
- Constants
- type Attestor
- func (a *Attestor) Attest(ctx *attestation.AttestationContext) error
- func (a *Attestor) BackRefs() map[string]cryptoutil.DigestSet
- func (a *Attestor) Name() string
- func (a *Attestor) RunType() attestation.RunType
- func (a *Attestor) Subjects() map[string]cryptoutil.DigestSet
- func (a *Attestor) Type() string
- type ErrNotGitlab
- type GithubTokenResponse
Constants ¶
View Source
const ( Name = "github" Type = "https://witness.dev/attestations/github/v0.1" RunType = attestation.PreMaterialRunType )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Attestor ¶
type Attestor struct { JWT *jwt.Attestor `json:"jwt,omitempty"` CIConfigPath string `json:"ciconfigpath"` PipelineID string `json:"pipelineid"` PipelineName string `json:"pipelinename"` PipelineUrl string `json:"pipelineurl"` ProjectUrl string `json:"projecturl"` RunnerID string `json:"runnerid"` CIHost string `json:"cihost"` CIServerUrl string `json:"ciserverurl"` RunnerArch string `json:"runnerarch"` RunnerOS string `json:"runneros"` // contains filtered or unexported fields }
Attestor is a struct that holds the necessary information for github attestation.
func (*Attestor) Attest ¶
func (a *Attestor) Attest(ctx *attestation.AttestationContext) error
Attest performs the attestation for the github environment.
func (*Attestor) BackRefs ¶
func (a *Attestor) BackRefs() map[string]cryptoutil.DigestSet
BackRefs returns a map of back references and their corresponding digest sets.
func (*Attestor) RunType ¶
func (a *Attestor) RunType() attestation.RunType
RunType returns the run type of the attestor.
type ErrNotGitlab ¶
type ErrNotGitlab struct{}
ErrNotGitlab is an error type that indicates the environment is not a github ci job.
func (ErrNotGitlab) Error ¶
func (e ErrNotGitlab) Error() string
Error returns the error message for ErrNotGitlab.
type GithubTokenResponse ¶
GithubTokenResponse is a struct that holds the response from the github token request.
Click to show internal directories.
Click to hide internal directories.