Skip to content

Tried new way of linking. #45

Tried new way of linking.

Tried new way of linking. #45

Workflow file for this run

name: Snyk vulnerability scan
on: [push]
jobs:
snyk:
name: Run Snyk to check for vulnerabilities
permissions:
security-events: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Snyk vulnerability check
uses: snyk/actions/maven-3-jdk-11@master
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --sarif-file-output=snyk.sarif
--severity-threshold=high
- name: Upload Results to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: snyk.sarif