Skip to content

Commit

Permalink
Release tartufo-action v4.0.0 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
sushantmimani authored Jan 18, 2023
1 parent e334c7d commit 37f3389
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 33 deletions.
25 changes: 0 additions & 25 deletions .github/workflows/release.yml

This file was deleted.

10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.2.0
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: fix-byte-order-marker
Expand All @@ -12,20 +12,20 @@ repos:
- id: trailing-whitespace
exclude: .md
- repo: https://github.com/pycqa/pylint
rev: v2.13.5
rev: v2.16.0b0
hooks:
- id: pylint
- repo: https://github.com/godaddy/tartufo
rev: v3.3.1
rev: v4.0.0
hooks:
- id: tartufo
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.942
rev: v0.991
hooks:
- id: mypy
args: [--ignore-missing-imports, --follow-imports=silent]
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 22.12.0
hooks:
- id: black
language_version: python3.7
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v4.0.0 - 17 January 2023
------------------------

* Update the action to use Tartufo v4.0.0

v3.3.1 - 4 January 2023
------------------------

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Container image that runs your code
# pin the version
FROM godaddy/tartufo:3.3.1
FROM godaddy/tartufo:4.0.0

# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.py /entrypoint.py
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ will be used as the configuration.

## `branch`

**Optional** Scan only the specified branch. Default `"false"`. This scan all branches in the repository.
**Optional** Scan only the specified branch. By default, all branches in the repository are scanned.

## `include-submodule`

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ maintainers = ["GoDaddy <oss@godaddy.com>"]
name = "tartufo-action"
readme = "README.md"
repository = "https://github.com/godaddy/tartufo-action/"
version = "3.3.1"
version = "4.0.0"

[tool.pylint.'MESSAGES CONTROL']
# C0111: Missing docstrings
Expand Down

0 comments on commit 37f3389

Please sign in to comment.