forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename docker-image.yml to snyk-scans.yml
- Loading branch information
1 parent
3f60c95
commit ce92c9d
Showing
2 changed files
with
76 additions
and
18 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: Snyk Full Platform | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
jobs: | ||
snyk-os: | ||
|
||
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 Test | ||
run: snyk test | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
- name: Monitor dependencies for security issues with Snyk | ||
run: snyk monitor | ||
env: | ||
SNYK_TOKEN: ${{secrets.SNYK_TOKEN}} | ||
|
||
jobs: | ||
|
||
snyk-code: | ||
|
||
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 --sarif > snyk_sarif | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
|
||
jobs: | ||
|
||
snyk-container: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Build the Docker image | ||
run: docker build . --file Dockerfile --tag boosef-juiceshop:latest | ||
- name: Monitor Docker Vulnerabilities | ||
uses: snyk/actions/docker@master | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
with: | ||
image: boosef-juiceshop:latest | ||
command: monitor | ||
|
||
jobs: | ||
|
||
snyk-iac: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Run Snyk to check configuration files for security issues | ||
continue-on-error: true | ||
uses: snyk/actions/iac@master | ||
env: | ||
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }} | ||
command: report |