Compare commits

..

1 commit

Author SHA1 Message Date
fbc13e5630
Install gitleaks binary from github releases
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-06-19 10:11:01 +02:00

View file

@ -16,7 +16,7 @@ ENV PRE_COMMIT_VERSION="3.7.1"
# renovate: datasource=rubygems depName=mdl versioning=ruby
ENV MDL_VERSION="0.13.0"
# renovate: datasource=repology depName=gitleaks versioning=loose
ENV GITLEAKS_VERSION="v8.18.4"
ENV GITLEAKS_VERSION="8.18.4"
RUN apk add --update --no-cache \
build-base="${BUILD_BASE_VERSION}" \
@ -30,7 +30,7 @@ RUN apk add --update --no-cache \
gem install --no-document mdl -v "${MDL_VERSION}" && \
mkdir /data && \
git config --global --add safe.directory /data && \
wget https://github.com/gitleaks/gitleaks/releases/download/${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz && \
wget https://github.com/gitleaks/gitleaks/releases/download/v${GITLEAKS_VERSION}/gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz && \
tar xf gitleaks_${GITLEAKS_VERSION}_linux_x64.tar.gz && cp gitleaks /usr/bin/
WORKDIR /data