diff --git a/Dockerfile.trufflehog b/Dockerfile.trufflehog index 461640c..271fc63 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.28.5/trufflehog_3.28.5_linux_amd64.tar.gz -O /tmp/trufflehog.tar.gz \ + wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.29.1/trufflehog_3.29.1_linux_amd64.tar.gz -O /tmp/trufflehog.tar.gz \ ; elif [ $(uname -m) = "aarch64" ]; then \ - wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.28.5/trufflehog_3.28.5_linux_arm64.tar.gz -O /tmp/trufflehog.tar.gz \ + wget https://github.com/trufflesecurity/trufflehog/releases/download/v3.29.1/trufflehog_3.29.1_linux_arm64.tar.gz -O /tmp/trufflehog.tar.gz \ ; else \ echo "Unsupported architecture" && exit 1 \ ; fi \