Skip to content

Commit

Permalink
Add Snyk Python Github Action
Browse files Browse the repository at this point in the history
  • Loading branch information
Macr0Nerd committed Apr 18, 2024
1 parent 126dcd4 commit 440d4ef
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/snyk-python.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Snyk Python

on:
push:
branches: ["main", "dev", "snyk"]
pull_request:
branches: ["main", "dev"]

permissions:
contents: read

jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/python@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

0 comments on commit 440d4ef

Please sign in to comment.