From febec4e37aea1738b81e8f69bd27b4ca54e79692 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Thu, 10 Mar 2022 18:41:34 +0100 Subject: [PATCH 1/2] Update readme for new release --- .talismanrc | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.talismanrc b/.talismanrc index f43bf9d..43bf2f8 100644 --- a/.talismanrc +++ b/.talismanrc @@ -1,3 +1,3 @@ fileignoreconfig: - filename: README.md - checksum: db50071255cfd6687a9011c05ef82c985afb25942a6537a839e30e8225445d72 + checksum: bb56483eaa0ba28959b1366e11ba78b0c93ecb5f632ea9256487cb40c91b4314 diff --git a/README.md b/README.md index 5d54130..236e317 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This action uses [Talisman](https://thoughtworks.github.io/talisman/) to scan th ```yml steps: - name: Detect secrets with Talisman in incoming commits - uses: carhartl/talisman-secrets-scan-action@v1.0.1 + uses: carhartl/talisman-secrets-scan-action@v1.1.0 ``` ## Caveat From c0a2d6f261032d44db4e7d792824aaa4dd6de7b8 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Fri, 11 Mar 2022 09:54:18 +0100 Subject: [PATCH 2/2] Upgrade Talisman to v1.26.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 46be0e5..5156fce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM ubuntu:20.04 RUN apt update && apt install -y git -ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.25.0/talisman_linux_amd64", "/talisman"] +ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.26.0/talisman_linux_amd64", "/talisman"] RUN chmod +x /talisman COPY entrypoint.sh /entrypoint.sh