Skip to content

Commit 3ed66db

Browse files
add security scan
1 parent 9b3525d commit 3ed66db

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Security Scan
2+
on:
3+
pull_request:
4+
jobs:
5+
security-scan:
6+
name: Secuity Scan
7+
runs-on: ubuntu-latest
8+
9+
permissions:
10+
contents: read
11+
pull-requests: write
12+
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v4
16+
17+
- name: tfsec
18+
uses: aquasecurity/tfsec-pr-commenter-action@main
19+
with:
20+
github_token: ${{ secrets.GITHUB_TOKEN }}
21+
working_directory: ''

0 commit comments

Comments
 (0)