Snyk Ruby action
Using the Snyk Ruby Action to check for vulnerabilities
name: Example workflow for Ruby using Snyk
on: push
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/ruby@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}name: Example workflow for Ruby using Snyk
on: push
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/ruby@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --severity-threshold=highUsing the Snyk Ruby Action to run snyk monitor
Uploading Snyk scan results to GitHub Code Scanning using the Snyk Ruby Action
Last updated
Was this helpful?

