-
Notifications
You must be signed in to change notification settings - Fork 93
51 lines (39 loc) · 1.3 KB
/
cve-scan-pr.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: HMDA PR CVE Scan
on:
pull_request:
types: [opened, synchronize, reopened]
permissions:
pull-requests: write
jobs:
hmda-platform-cve-scan:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v4
- name: Build Docker image of HMDA platform
run: |
env JAVA_OPTS="-Xss256m -Xmx4096m" sbt "project hmda-platform" dockerPublishLocalSkipTests
continue-on-error: false
- name: Tag and name Docker image
run: docker tag hmda/hmda-platform:latest pr-cve-scan:latest
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install Grype
run: |
brew install grype
- name: Run Grype scan
run: |
grype pr-cve-scan:latest > grype-report.txt
- name: Upload Grype report to artifact
uses: actions/upload-artifact@v4
with:
name: cve-report
path: |
grype-report.txt
- name: Post comment with report link
uses: thollander/actions-comment-pull-request@v3
with:
message: CVE scan report generated by Grype are available. Check the Actions tab to download the reports.
- name: Remove Docker image
run: |
docker rmi pr-cve-scan:latest