Skip to content

Releases: suzuki-shunsuke/github-action-tfsec

v1.0.0

22 Oct 00:33
v1.0.0
6b4afce
Compare
Choose a tag to compare

v0.1.9

09 Sep 00:41
v0.1.9
dc436b3
Compare
Choose a tag to compare

Issues | Pull Requests | v0.1.8...v0.1.9

Features

#618 #620 Support tfsec v1.28.2. Parse the output of tfsec properly

As of tfsec v1.28.2, tfsec outputs the transition message to the standard output.

e.g.

======================================================
tfsec is joining the Trivy family

tfsec will continue to remain available
for the time being, although our engineering
attention will be directed at Trivy going forward.

You can read more here:
https://github.com/aquasecurity/tfsec/discussions/1994
======================================================
{
  "results": []
}

Because of this message, this action couldn't parse the output as JSON.

Parsing tfsec result
Error: Unexpected token = in JSON at position 1

This release enables to parse the output properly by removing the transition message before parsing the output as JSON.

v0.1.8

02 Sep 11:26
v0.1.8
122c054
Compare
Choose a tag to compare

Pull Requests | v0.1.7...v0.1.8

Features

#612 Add an input ignore_hcl_errors

This option is disabled by default.

If this is enabled, tfsec's --ignore-hcl-errors is enabled.

tfsec v0.40.0 (Jun 9, 2021) supports --ignore-hcl-errors.

v0.1.7

18 Apr 02:51
07dc756
Compare
Choose a tag to compare

Pull Requests | v0.1.6...v0.1.7

Bug Fixes

#103 Fix links to tfsec document

image

v0.1.6

08 Apr 22:56
467b44b
Compare
Choose a tag to compare

Pull Requests | v0.1.5...v0.1.6

Bug Fixes

#92 Support tfsec's CRITICAL severity type

Thanks to kei711

v0.1.5

25 Feb 00:02
fa2b08e
Compare
Choose a tag to compare

Pull Requests | v0.1.4...v0.1.5

Bug Fixes

#49 Make working_directory optional

v0.1.4

15 Feb 12:10
Compare
Choose a tag to compare

Pull Requests | v0.1.3...v0.1.4

Feature

#31 Support Notification with github-comment

image

e.g.

- uses: suzuki-shunsuke/github-action-tfsec@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    working_directory: tests
    github_comment: true # Enable github-comment notification

v0.1.4-0

13 Feb 10:01
a69403d
Compare
Choose a tag to compare
v0.1.4-0 Pre-release
Pre-release

Pull Requests | v0.1.3...v0.1.4-0

Feature

#31 Support Notification with github-comment

image

e.g.

- uses: suzuki-shunsuke/github-action-tfsec@main
  with:
    github_token: ${{ secrets.GITHUB_TOKEN }}
    working_directory: tests
    github_comment: true # Enable github-comment notification

v0.1.3

02 Feb 12:54
cbf912c
Compare
Choose a tag to compare

Pull Requests | v0.1.2...v0.1.3

Feature

#16 Change Reviewdog format from checkstyle to Reviewdog Diagnostic Format

Rewrite the composite action to Javascript Action.

TO BE (RDFormat)

The tfsec's rule id and link to the document are added.

image

v0.1.2

13 Jan 17:15
db1480e
Compare
Choose a tag to compare

Pull Requests | v0.1.1...v0.1.2

#4

  • Make inputs optional
  • Refactor
  • Improve README
  • Add test