From 56b391cbd9736741735008086fbf1a49bbba29b4 Mon Sep 17 00:00:00 2001 From: semantic-release-bot <semantic-release-bot@martynus.net> Date: Mon, 15 Jul 2024 10:23:49 +0000 Subject: [PATCH] chore(release): 2.6.0 [skip ci] # [2.6.0](https://gitlab.com/to-be-continuous/gitleaks/compare/2.5.2...2.6.0) (2024-07-15) ### Features * default gitleaks arguments to avoid secret exposure ([595fc7d](https://gitlab.com/to-be-continuous/gitleaks/commit/595fc7dfe42fd00c8c5dc6647779bed24955e0f4)) --- CHANGELOG.md | 7 +++++++ README.md | 4 ++-- templates/gitlab-ci-gitleaks.yml | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 968fcba..8203d09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [2.6.0](https://gitlab.com/to-be-continuous/gitleaks/compare/2.5.2...2.6.0) (2024-07-15) + + +### Features + +* default gitleaks arguments to avoid secret exposure ([595fc7d](https://gitlab.com/to-be-continuous/gitleaks/commit/595fc7dfe42fd00c8c5dc6647779bed24955e0f4)) + ## [2.5.2](https://gitlab.com/to-be-continuous/gitleaks/compare/2.5.1...2.5.2) (2024-05-05) diff --git a/README.md b/README.md index 72f6b1a..4d59f73 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Add the following to your `gitlab-ci.yml`: ```yaml include: # 1: include the component - - component: gitlab.com/to-be-continuous/gitleaks/gitlab-ci-gitleaks@2.5.2 + - component: gitlab.com/to-be-continuous/gitleaks/gitlab-ci-gitleaks@2.6.0 # 2: set/override component inputs inputs: args: "--no-banner" # ⚠ this is only an example @@ -33,7 +33,7 @@ Add the following to your `gitlab-ci.yml`: include: # 1: include the template - project: 'to-be-continuous/gitleaks' - ref: '2.5.2' + ref: '2.6.0' file: '/templates/gitlab-ci-gitleaks.yml' variables: diff --git a/templates/gitlab-ci-gitleaks.yml b/templates/gitlab-ci-gitleaks.yml index cbe96e7..71a3241 100644 --- a/templates/gitlab-ci-gitleaks.yml +++ b/templates/gitlab-ci-gitleaks.yml @@ -225,7 +225,7 @@ gitleaks: entrypoint: [""] services: - name: "$TBC_TRACKING_IMAGE" - command: ["--service", "gitleaks", "2.5.2"] + command: ["--service", "gitleaks", "2.6.0"] stage: test needs: [] variables: -- GitLab