mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 10:08:40 -05:00
18 lines
432 B
YAML
18 lines
432 B
YAML
name: Snyk
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
security:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- uses: snyk/actions/setup@master
|
|
- name: update lockfile
|
|
run: ./update-gemfile-lock.sh
|
|
- name: Run Snyk to check for vulnerabilities
|
|
run: snyk monitor --file=Gemfile.lock
|
|
env:
|
|
SNYK_TOKEN: ${{ secrets.SNYK_DIO_KEY }}
|