Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
Setup snyk github workflow (https://issues.redhat.com/browse/ART-6354) (
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwindasr authored Mar 22, 2023
1 parent 76e1128 commit 0dec3d2
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/snyk_security.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Snyk Scan

on: [ push, pull_request ]

jobs:
snyk:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Test for open source vulnerabilities and license issues.
uses: snyk/actions/python-3.8@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
command: test
- name: Test for any known security issues using Static Code Analysis.
uses: snyk/actions/python@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
command: code test

0 comments on commit 0dec3d2

Please sign in to comment.