FMWK-560 Make upper boundary inclusive in the BETWEEN operator #76
Workflow file for this run
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 scan | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
snyk-security: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Run Snyk to check for vulnerabilities | |
uses: snyk/actions/maven@master | |
continue-on-error: true # To make sure that SARIF upload gets called | |
env: | |
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | |
with: | |
args: --all-projects --sarif-file-output=snyk.sarif | |
- name: Handle undefined security-severity | |
run: | | |
sed -i 's/"security-severity": "undefined"/"security-severity": "0"/g' snyk.sarif | |
- name: Check output file | |
id: out-file | |
run: | | |
if test -f "snyk.sarif"; then | |
echo "::set-output name=exists::true"; else | |
echo "::set-output name=exists::false" | |
fi | |
- name: Upload result to GitHub Code Scanning | |
if: steps.out-file.outputs.exists == 'true' | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: snyk.sarif |