Skip to content

Commit 8c04ad3

Browse files
committed
add snyk for IaC scanning
1 parent 440e897 commit 8c04ad3

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/snyk.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Snyk Infrastructure as Code
2+
on: push
3+
jobs:
4+
security:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v2
8+
- name: Run Snyk to check Terraform manifest file for issues
9+
uses: snyk/actions/iac@master
10+
env:
11+
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 commit comments

Comments
 (0)