Merge pull request #130 from markcheret/security_add_snyk
This commit is contained in:
commit
e8bd3830dc
3 changed files with 19 additions and 5 deletions
13
.github/workflows/snyk.yml
vendored
Normal file
13
.github/workflows/snyk.yml
vendored
Normal file
|
@ -0,0 +1,13 @@
|
|||
name: Snyk
|
||||
on: push
|
||||
jobs:
|
||||
security:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
- name: Run Snyk to check for vulnerabilities
|
||||
uses: snyk/actions/php@master
|
||||
env:
|
||||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
|
||||
with:
|
||||
args: --all-projects
|
Reference in a new issue