chore(deps): update all patch dependencies #2463
This file contains hidden or 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 security scan" | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| terraform-security-scan: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| module: | |
| - athena_access_logs | |
| - ecs | |
| - notify_slack | |
| - user_login_alarm | |
| - vpc | |
| - rds_activity_stream | |
| - resolver_dns | |
| - S3 | |
| - S3_log_bucket | |
| - S3_scan_object | |
| - schedule_shutdown | |
| - lambda | |
| - lambda_response | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - name: Checkov security scan | |
| id: checkov | |
| uses: bridgecrewio/checkov-action@ffb0926e337a96499d5d11d4b83733672f2fe3c3 # latest as of Aug 10, 2021 | |
| with: | |
| directory: ${{ matrix.module }} | |
| framework: terraform | |
| output_format: cli | |
| download_external_modules: true |