mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
Merge pull request #511 from puppetlabs/migrate_snyk
Add Snyk action and Move to RE org
This commit is contained in:
commit
9fb9d93c03
1 changed files with 19 additions and 0 deletions
19
.github/workflows/snyk.yml
vendored
Normal file
19
.github/workflows/snyk.yml
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
name: Snyk Scan
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
security:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Run Snyk to check for vulnerabilities
|
||||||
|
uses: snyk/actions/ruby@master
|
||||||
|
env:
|
||||||
|
SNYK_TOKEN: ${{ secrets.SNYK_RE_KEY }}
|
||||||
|
with:
|
||||||
|
command: monitor
|
||||||
Loading…
Add table
Add a link
Reference in a new issue