forked from openwallet-foundation/acapy
-
Notifications
You must be signed in to change notification settings - Fork 0
61 lines (55 loc) · 2.48 KB
/
Copy pathsnyk.yml
File metadata and controls
61 lines (55 loc) · 2.48 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Snyk Container
on:
push:
branches:
- main
- '**.lts' # LTS release branches (e.g., 0.12.lts, 1.2.lts)
paths:
- aries_cloudagent/** # Legacy directory (older LTS branches)
- acapy_agent/**
- docker/**
jobs:
snyk:
permissions:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/upload-sarif to upload SARIF results
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'openwallet-foundation' }}
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: Build a Docker image
run: docker build -t acapy-agent -f docker/Dockerfile .
- name: Run Snyk to check Docker image for vulnerabilities
# Snyk can be used to break the build when it detects vulnerabilities.
# In this case we want to upload the issues to GitHub Code Scanning
continue-on-error: true
uses: snyk/actions/docker@9adf32b1121593767fc3c057af55b55db032dc04 # 1.0.0
env:
# In order to use the Snyk Action you will need to have a Snyk API token.
# More details in https://github.com/snyk/actions#getting-your-snyk-token
# or you can signup for free at https://snyk.io/login
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
image: acapy-agent
args: --file=docker/Dockerfile
- name: Run Snyk monitor for continuous monitoring
# Continuously monitor for new vulnerabilities in released/releasable code
# See https://support.snyk.io/hc/en-us/articles/360000920818-What-are-the-differences-among-snyk-test-monitor-and-protect
continue-on-error: true
uses: snyk/actions/docker@9adf32b1121593767fc3c057af55b55db032dc04 # 1.0.0
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
with:
image: acapy-agent
args: --file=docker/Dockerfile
command: monitor
# Replace any "null" security severity values with 0. The null value is used in the case
# of license-related findings, which do not do not indicate a security vulnerability.
# See https://github.com/github/codeql-action/issues/2187 for more context.
- name: Post process snyk sarif file
run: |
sed -i 's/"security-severity": "null"/"security-severity": "0"/g' snyk.sarif
- name: Upload result to GitHub Code Scanning
uses: github/codeql-action/upload-sarif@c793b717bc78562f491db7b0e93a3a178b099162 # v3.29.5
with:
sarif_file: snyk.sarif