We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6fcba5 commit 0241226Copy full SHA for 0241226
.github/workflows/qa.yml
@@ -38,7 +38,3 @@ jobs:
38
- name: Run PMD Check
39
if: success() || failure()
40
run: mvn -B pmd:pmd --file pom.xml
41
- - name: Run Snyk to check for vulnerabilities
42
- uses: snyk/actions/maven@master
43
- env:
44
- SNYK_TOKEN: ${{ secrets.SNYK_KEY }}
.github/workflows/snyk.yml
@@ -0,0 +1,14 @@
1
+name: Example workflow for Maven using Snyk
2
+on:
3
+ push:
4
+ branches:
5
+ - dev-qa
6
+jobs:
7
+ security:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@master
11
+ - name: Run Snyk to check for vulnerabilities
12
+ uses: snyk/actions/maven@master
13
+ env:
14
+ SNYK_TOKEN: ${{ secrets.SNYK_KEY }}
0 commit comments