-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (51 loc) · 1.95 KB
/
vulnerability-scan.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
52
53
54
55
56
name: "DIAM Vulnerability Scan"
on:
push:
branches:
- develop
pull_request:
branches:
- main
- test
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Login to Openshift Docker Registry Gold
uses: docker/login-action@v1
with:
registry: image-registry.apps.gold.devops.gov.bc.ca
username: ${{ secrets.OC_USERNAME }}
password: ${{ secrets.OC_PASSWORD_VAULT_SA }}
- name: Vulnerability Scan Frontend
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/pidp-frontend:develop
- name: Vulnerability Scan WebApi
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/pidp-webapi:develop
- name: Vulnerability Scan CaseMgmt
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/edt-casemgmt:develop
- name: Vulnerability Scan Notification
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/jum-notification:develop
- name: Vulnerability Scan Disclosure
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/edt-disclosure:develop
- name: Vulnerability Scan EDT Core
uses: Azure/container-scan@v0
continue-on-error: true
with:
image-name: image-registry.apps.gold.devops.gov.bc.ca/${{ secrets.LICENSE_PLATE }}-tools/edt-service:develop