diff --git a/Dockerfile.trufflehog b/Dockerfile.trufflehog index d9afcaa..a168487 100644 --- a/Dockerfile.trufflehog +++ b/Dockerfile.trufflehog @@ -3,9 +3,9 @@ RUN apk add --no-cache bash git wget openssh-client ca-certificates \ && rm -rf /var/cache/apk/* && \ update-ca-certificates RUN if [ $(uname -m) = "x86_64" ]; then \ - wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.36.0/trufflehog_3.36.0_linux_amd64.tar.gz -O /tmp/trufflehog.tar.gz \ + wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.63.7/trufflehog_3.63.7_linux_amd64.tar.gz -O /tmp/trufflehog.tar.gz \ ; elif [ $(uname -m) = "aarch64" ]; then \ - wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.36.0/trufflehog_3.36.0_linux_arm64.tar.gz -O /tmp/trufflehog.tar.gz \ + wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.63.6/trufflehog_3.63.7_linux_arm64.tar.gz -O /tmp/trufflehog.tar.gz \ ; else \ echo "Unsupported architecture" && exit 1 \ ; fi \