trufflehog: docker-run path fails on Forgejo runner job container #117
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
First Forgejo Actions run of
trufflehog.yml(#115) failed. The original GH workflow useddocker run trufflesecurity/trufflehog:latest filesystem .... On GHA runners the docker CLI is preinstalled; on the Forgejo runner the per-job container provisioned byruns-on: dockeris a vanilla Node image with no docker CLI, so thedocker runstep has nothing to invoke.Fix: install the trufflehog binary directly in the job and run
trufflehog filesystem .— drops the dependency on a docker CLI inside the job container.