Bump cryptography from 38.0.4 to 41.0.3 #685
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: tfsec | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: [ main ] | |
jobs: | |
tfsec: | |
name: runner / tfsec | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Run tfsec with reviewdog output on the PR | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
working_directory: terraform | |
reporter: github-pr-review # Change reviewdog reporter | |
filter_mode: nofilter | |
fail_on_error: false # Don't fail for now | |
tfsec_flags: "-e aws-dynamodb-table-customer-key,AZU009,AZU008" |