We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeec250 commit 31d07f6Copy full SHA for 31d07f6
.github/workflows/snyk.yaml
@@ -8,16 +8,23 @@ jobs:
8
steps:
9
- uses: actions/checkout@v3
10
11
+ - uses: snyk/actions/setup@master
12
+ with:
13
+ snyk-version: v1.1032.0
14
15
- uses: actions/setup-java@v3
16
with:
17
distribution: temurin
18
java-version: 8
19
20
- name: Run Snyk to check for vulnerabilities
- uses: snyk/actions/gradle@master
21
env:
22
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
23
DEBUG: '*snyk*'
- with:
- args: --all-projects --configuration-matching='^runtimeClasspath$' --severity-threshold=high --policy-path=$PWD/.snyk
24
+ run: >
25
+ snyk test
26
+ --all-projects
27
+ --configuration-matching='^runtimeClasspath$'
28
+ --org=radar-base
29
+ --policy-path=$PWD/.snyk
30
+ --severity-threshold=high
0 commit comments