github.com/khulnasoft-lab/defsec@v1.0.5-0.20230827010352-5e9f46893d95/pkg/providers/github/actions.go (about)

     1  package github
     2  
     3  import (
     4  	defsecTypes "github.com/khulnasoft-lab/defsec/pkg/types"
     5  )
     6  
     7  type Action struct {
     8  	Metadata           defsecTypes.Metadata
     9  	EnvironmentSecrets []EnvironmentSecret
    10  }
    11  
    12  type EnvironmentSecret struct {
    13  	Metadata       defsecTypes.Metadata
    14  	Repository     defsecTypes.StringValue
    15  	Environment    defsecTypes.StringValue
    16  	SecretName     defsecTypes.StringValue
    17  	PlainTextValue defsecTypes.StringValue
    18  	EncryptedValue defsecTypes.StringValue
    19  }