Skip to content

(maint) Update facter to 07037a3f3297627bdae26d819b483fdf301fa6ca #15

(maint) Update facter to 07037a3f3297627bdae26d819b483fdf301fa6ca

(maint) Update facter to 07037a3f3297627bdae26d819b483fdf301fa6ca #15

Workflow file for this run

---
name: Snyk Monitor
on:
push:
branches: [7.x]
jobs:
snyk_monitor:
if: ${{ github.repository_owner == 'puppetlabs' }}
runs-on: ubuntu-latest
name: Snyk Monitor
steps:
- name: Checkout current PR
uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install dependencies
run: bundle install --jobs 3 --retry 3
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF_NAME})"
id: extract_branch
- name: Run Snyk to check for vulnerabilities
uses: snyk/actions/ruby@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_PE_TOKEN }}
with:
command: monitor
args: --org=puppet-enterprise --project-name=${{ github.repository }} --target-reference=${{ steps.extract_branch.outputs.branch }}