Merge branch 'release/6.0.4' #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Snyk | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Install Snyk | |
run: sudo npm install -g snyk | |
- name: Run Snyk to check for vulnerabilities in tracker | |
run: snyk monitor --all-sub-projects --configuration-matching='releaseRuntimeClasspath' |