Dagger
Search

trufflehog

No long description provided.

Installation

dagger install github.com/aweris/gale/daggerverse/gha/trufflesecurity/trufflehog@e0e54a79c19b698ccc334801f234b90d0cf78c1d

Entrypoint

Return Type
Trufflehog
Example
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
NameTypeDefault ValueDescription
withBaseStringKind -No description provided
withExtraArgsStringKind -No description provided
withHeadStringKind -No description provided
withPathStringKind !-No description provided
sourceDirectory -No description provided
repoStringKind -No description provided
tagStringKind -No description provided
branchStringKind -No description provided
containerContainer -No description provided
runnerDebugBooleanKind -No description provided
tokenSecret -No description provided
Example
Function Trufflehog.run is not accessible from the trufflehog module
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)
}