mirror of
https://github.com/puppetlabs/vmpooler-provider-ec2.git
synced 2026-01-26 02:28:40 -05:00
25 lines
529 B
YAML
25 lines
529 B
YAML
name: Snyk Scan
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
security:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Setup Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: jruby-9.3.6.0
|
|
- name: Bundle Install
|
|
run: bundle install
|
|
- name: Run Snyk to check for vulnerabilities
|
|
uses: snyk/actions/ruby@master
|
|
env:
|
|
SNYK_TOKEN: ${{ secrets.SNYK_RE_KEY }}
|
|
with:
|
|
command: monitor
|