mirror of
https://github.com/puppetlabs/vmpooler-provider-vsphere.git
synced 2026-01-25 19:08:41 -05:00
19 lines
362 B
YAML
19 lines
362 B
YAML
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
|