Skip to content

Commit f93a5bd

Browse files
committed
add secret-scan and actionlint actions
1 parent 38fb7d2 commit f93a5bd

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,8 @@ Check targets (`check.mk`)
271271
- `cfn-guard-cloudformation` - validates `cloudformation` templates against cfn-guard rulesets and writes outputs to `.cfn_guard_out/`
272272
- `cfn-guard-cdk` - validates `cdk.out` against cfn-guard rulesets and writes outputs to `.cfn_guard_out/`
273273
- `cfn-guard-terraform` - validates `terraform_plans` against cfn-guard rulesets and writes outputs to `.cfn_guard_out/`
274+
- `actionlint` - runs actionlint against github actions
275+
- `secret-scan` - runs git-secrets (including scanning history) against the repo
274276

275277
Trivy targets (`trivy.mk`)
276278
- `trivy-license-check` - runs Trivy license scan (HIGH/CRITICAL) and writes `.trivy_out/license_scan.txt`

src/base/.devcontainer/makefiles/check.mk

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,9 @@ cfn-guard-terraform:
7575
> ".cfn_guard_out/terraform_$$ruleset.txt"; \
7676
done\
7777
'
78+
79+
actionlint:
80+
actionlint
81+
82+
secret-scan:
83+
git-secrets --scan-history .

0 commit comments

Comments
 (0)