Documentation & Minor Refactors #28
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: terraform-sec-check | |
# Only trigger, when the build workflow succeeded | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
permissions: read-all | |
jobs: | |
tfsec-checks: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout Repository | |
- name : Check out Git Repository | |
uses: actions/checkout@v2 | |
# Tfsec - Security scanner for your Terraform code | |
- name: Run Tfsec | |
uses: aquasecurity/[email protected] |