GitHub actions migration
Alternative (a) switch to an alternate supported version of the software
Follow these steps for Python-3.6/Python-3.7
name: Example workflow for Python-3.6 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/python-3.6@master // <- Using python 3.6
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}Follow these steps for scala/sbt
Alternative (b) create your own custom actions
Leveraging the Snyk Setup Action
Direct CLI Installation
Last updated
Was this helpful?

