Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 698 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 698 Bytes

🐋 gitleaks Docker Image

This docker image provides gitleaks for use in CI.

🦊 Use in GitLab CI

gitleaks:
  stage: test
  image: ghcr.io/wegift/gitleaks:<version>
  script:
    - gitleaks detect --redact --verbose

🛫 Releasing

To make a new release create a tag with the desired version. We do not prefix the version number with v as this is the standard within the Docker ecosystem.

git tag -am "<description>" X.Y.Z
git push origin X.Y.Z

Then create a release in GitHub for this tag. CI will then run and publish the version to GHCR.