forked from dedis/d-voting
-
Notifications
You must be signed in to change notification settings - Fork 1
29 lines (27 loc) · 1.02 KB
/
snyk-container.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
# A sample workflow which checks out the code, builds a container
# image using Docker and scans that image for vulnerabilities using
# Snyk. The results are then uploaded to GitHub Security Code Scanning
#
# For more examples, including how to limit scans to only high-severity
# issues, monitor images for newly disclosed vulnerabilities in Snyk and
# fail PR checks for new vulnerabilities, see https://github.com/snyk/actions/
name: Snyk workflow with no block
on: push
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: install Snyk CLI
run: npm install -g snyk
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
- name: run Snyk Open Source Test
run: snyk test
continue-on-error: true
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}