trufflehog
No long description provided.
Installation
dagger install github.com/aweris/gale/daggerverse/gha/trufflesecurity/trufflehog@e0e54a79c19b698ccc334801f234b90d0cf78c1d
Entrypoint
Return Type
Trufflehog
Example
dagger -m github.com/aweris/gale/daggerverse/gha/trufflesecurity/trufflehog@e0e54a79c19b698ccc334801f234b90d0cf78c1d call \
func (m *myModule) example() *Trufflehog {
return dag.
Trufflehog()
}
@function
def example() -> dag.Trufflehog:
return (
dag.trufflehog()
)
@func()
example(): Trufflehog {
return dag
.trufflehog()
}
Types
Trufflehog 🔗
run() 🔗
Runs the trufflesecurity/trufflehog GitHub Action.
Return Type
Container !
Arguments
Name | Type | Default Value | Description |
---|---|---|---|
withBase | StringKind | - | No description provided |
withExtraArgs | StringKind | - | No description provided |
withHead | StringKind | - | No description provided |
withPath | StringKind ! | - | No description provided |
source | Directory | - | No description provided |
repo | StringKind | - | No description provided |
tag | StringKind | - | No description provided |
branch | StringKind | - | No description provided |
container | Container | - | No description provided |
runnerDebug | BooleanKind | - | No description provided |
token | Secret | - | No description provided |
Example
dagger -m github.com/aweris/gale/daggerverse/gha/trufflesecurity/trufflehog@e0e54a79c19b698ccc334801f234b90d0cf78c1d call \
run
func (m *myModule) example(withPath ) {
return dag.
Trufflehog().
Run(withPath)
}
@function
def example(with_path: ) -> :
return (
dag.trufflehog()
.run(with_path)
)
@func()
example(withPath: ): {
return dag
.trufflehog()
.run(withPath)
}