From 989bc5de9358234e73122c04b8cd643200607156 Mon Sep 17 00:00:00 2001 From: emayuri-godaddy Date: Wed, 10 Aug 2022 12:05:03 -0700 Subject: [PATCH] Releasing 3.2.0 version of tartufo action --- .pre-commit-config.yaml | 2 +- CHANGELOG.md | 7 ++++++- Dockerfile | 4 ++-- pyproject.toml | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d60e16d..22c781a 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -16,7 +16,7 @@ repos: hooks: - id: pylint - repo: https://github.com/godaddy/tartufo - rev: v3.1.4 + rev: v3.2.0 hooks: - id: tartufo - repo: https://github.com/pre-commit/mirrors-mypy diff --git a/CHANGELOG.md b/CHANGELOG.md index b0aac72..1d1625b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +v3.2.0 - 10 August 2022 +------------------------ + +* Update the action to use Tartufo v3.2.0 + v3.1.4 - 31 May 2022 ------------------------ @@ -12,4 +17,4 @@ v3.1.3 - 13 April 2022 v1.0.0 - 9 February 2022 ------------------------ -This is the first release of the `tartufo` action. \ No newline at end of file +This is the first release of the `tartufo` action. diff --git a/Dockerfile b/Dockerfile index f38b465..5f1c6fd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ # Container image that runs your code # pin the version -FROM godaddy/tartufo:3.1.4 +FROM godaddy/tartufo:3.2.0 # Copies your code file from your action repository to the filesystem path `/` of the container COPY entrypoint.py /entrypoint.py # Code file to execute when the docker container starts up (`entrypoint.py`) -ENTRYPOINT ["/entrypoint.py"] \ No newline at end of file +ENTRYPOINT ["/entrypoint.py"] diff --git a/pyproject.toml b/pyproject.toml index e11a49f..caf52fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ maintainers = ["GoDaddy "] name = "tartufo-action" readme = "README.md" repository = "https://github.com/godaddy/tartufo-action/" -version = "3.1.4" +version = "3.2.0" [tool.pylint.'MESSAGES CONTROL'] # C0111: Missing docstrings