constellation/.github/workflows/test-tfsec.yml

40 lines
862 B
YAML
Raw Normal View History

2022-09-20 11:38:37 +00:00
name: Terraform security scanner
on:
workflow_dispatch:
push:
branches:
- main
- "release/**"
2022-09-20 11:38:37 +00:00
paths:
- "**.tf"
pull_request:
paths:
- "**.tf"
permissions:
contents: read
pull-requests: write
jobs:
tfsec:
name: tfsec
runs-on: ubuntu-22.04
2022-09-20 11:38:37 +00:00
steps:
- name: Checkout
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
2022-09-20 11:38:37 +00:00
with:
ref: ${{ github.head_ref }}
2022-09-20 11:38:37 +00:00
- name: tfsec
uses: aquasecurity/tfsec-pr-commenter-action@7a44c5dcde5dfab737363e391800629e27b6376b
2022-09-20 11:38:37 +00:00
with:
soft_fail_commenter: true
2022-09-20 11:38:37 +00:00
tfsec_formats: default,text
tfsec_args: --force-all-dirs
github_token: ${{ github.token }}
- name: tfsec summary
shell: bash
run: tail -n 27 results.text >> "$GITHUB_STEP_SUMMARY"