Skip to content

Commit

Permalink
add security scan
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanthreddy29 committed Oct 22, 2024
1 parent 9b3525d commit 3ed66db
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Security Scan
on:
pull_request:
jobs:
security-scan:
name: Secuity Scan
runs-on: ubuntu-latest

permissions:
contents: read
pull-requests: write

steps:
- name: Checkout Repository
uses: actions/checkout@v4

- name: tfsec
uses: aquasecurity/tfsec-pr-commenter-action@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
working_directory: ''

0 comments on commit 3ed66db

Please sign in to comment.