Skip to content

[Security] Vulnerability fixes and prepare for 2.4.3 release #17

[Security] Vulnerability fixes and prepare for 2.4.3 release

[Security] Vulnerability fixes and prepare for 2.4.3 release #17

Workflow file for this run

name: Snyk test
on:
- pull_request
jobs:
security:
runs-on: ubuntu-latest
env:
SNYK_PARAMS: --all-projects --configuration-matching="^runtimeClasspath$" --fail-on=upgradable --org=radar-base --policy-path=.snyk --severity-threshold=high
steps:
- uses: actions/checkout@v3
- name: Run Snyk to check for JDK vulnerabilities
uses: snyk/actions/gradle-jdk17@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
DEBUG: '*snyk*'
with:
args: ${{ env.SNYK_PARAMS }}
- name: Run Snyk to check for Node vulnerabilities
uses: snyk/actions/node@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
DEBUG: '*snyk*'
with:
args: ${{ env.SNYK_PARAMS }}