chore(deps): update dependency ami_id to ami-05b2a190ca777e72b (#1248) #873
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: Run tfsec on merge | |
on: | |
push: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
tfsec: | |
name: tfsec sarif report | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@master | |
- name: tfsec | |
uses: tfsec/tfsec-sarif-action@master | |
with: | |
sarif_file: tfsec.sarif | |
- name: Upload SARIF file | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
# Path to SARIF file relative to the root of the repository | |
sarif_file: tfsec.sarif | |
category: Tfsec IAC Scanning |