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 7535711 commit 0f19785Copy full SHA for 0f19785
.github/workflows/snyk_scan.yml
@@ -15,11 +15,15 @@ jobs:
15
security:
16
runs-on: ubuntu-latest
17
steps:
18
- - uses: actions/checkout@master
+ - name: Checkout Code
19
+ uses: actions/checkout@v3
20
+ with:
21
+ ref: 'main'
22
+
23
- name: Run Snyk To Check For Vulnerabilities
24
uses: snyk/actions/gradle@master
25
env:
26
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
27
with:
- command: monitor
28
+ command: test
29
args: --all-sub-projects --org=java-agent --configuration-matching='(^compileClasspath$)|(^runtimeClasspath$)'
0 commit comments