Skip to content

Commit

Permalink
Update actions.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynafinocchiaro authored Apr 22, 2024
1 parent 96286d5 commit bb1a9fa
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,24 +117,34 @@ jobs:
uses: aquasecurity/trivy-action@master
with:
image-ref: proxy-server:${{ env.podman_tag }}
severity: HIGH
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Role Service
uses: aquasecurity/trivy-action@master
with:
image-ref: role-service:${{ env.podman_tag }}
severity: HIGH
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Tenant Service
uses: aquasecurity/trivy-action@master
with:
image-ref: tenant-service:${{ env.podman_tag }}
severity: HIGH
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan SideCar Proxy
uses: aquasecurity/trivy-action@master
with:
image-ref: sidecar-proxy:${{ env.sidecar_tag }}
severity: HIGH
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'
- name: Scan Storage Service
uses: aquasecurity/trivy-action@master
with:
image-ref: storage-service:${{ env.podman_tag }}
severity: HIGH
severity: 'HIGH,CRITICAL'
ignore-unfixed: true
exit-code: '1'

0 comments on commit bb1a9fa

Please sign in to comment.