Skip to content

Commit

Permalink
Create snyk-scans.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
pdrakesnyk authored Aug 27, 2024
1 parent 8bbd1d6 commit e4d76e7
Showing 1 changed file with 71 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/workflows/snyk-scans.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
name: Snyk Full Platform

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:

snyk-os:
environment: snyk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 18.4
- uses: snyk/actions/setup@master
- name: Snyk OS Test
run: |
npm install snyk
snyk test
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
continue-on-error: true
- name: Monitor dependencies for security issues with Snyk
run: snyk monitor
env:
SNYK_TOKEN: ${{secrets.SNYK_TOKEN}}

snyk-code:
environment: snyk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: snyk/actions/setup@master
- name: Snyk Code Test
continue-on-error: true
run: snyk code test
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

snyk-container:
environment: snyk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag boosef-juiceshop:latest
- name: Scan and Monitor Docker Vulnerabilities
uses: snyk/actions/docker@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
image: boosef-juiceshop:latest
command: monitor

snyk-iac:
environment: snyk
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run and monitor Snyk to check configuration files for security issues
continue-on-error: true
uses: snyk/actions/iac@master
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
args: --report

0 comments on commit e4d76e7

Please sign in to comment.