(maint) Update facter to 8fadeeb314d8a496a541596c8fb75d53cc5443c7 #1048
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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 }} |