Added functionality for scanning pre-login QR codes from the SEP UI #10
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 test | |
on: | |
pull_request: | |
branches: | |
- master | |
- dev | |
jobs: | |
security: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: snyk/actions/setup@master | |
with: | |
snyk-version: v1.1032.0 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run Snyk to check for vulnerabilities | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
run: > | |
snyk test | |
--all-sub-projects | |
--configuration-matching="^runtimeClasspath$" | |
--fail-on=upgradable | |
--org=radar-base | |
--policy-path=.snyk | |
--severity-threshold=high |