Skip to content

Commit

Permalink
Update image scanner
Browse files Browse the repository at this point in the history
  • Loading branch information
shaynafinocchiaro authored Apr 19, 2024
1 parent cfd21e2 commit 96286d5
Showing 1 changed file with 15 additions and 25 deletions.
40 changes: 15 additions & 25 deletions .github/workflows/actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,37 +114,27 @@ jobs:
docker.io/library/sidecar-proxy:${{ env.podman_tag }}
docker load -i /tmp/images.tar
- name: Scan Proxy Server
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: proxy-server:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: proxy-server:${{ env.podman_tag }}
severity: HIGH
- name: Scan Role Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: role-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: role-service:${{ env.podman_tag }}
severity: HIGH
- name: Scan Tenant Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: tenant-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: tenant-service:${{ env.podman_tag }}
severity: HIGH
- name: Scan SideCar Proxy
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: sidecar-proxy:${{ env.sidecar_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: sidecar-proxy:${{ env.sidecar_tag }}
severity: HIGH
- name: Scan Storage Service
uses: Azure/container-scan@v0
uses: aquasecurity/trivy-action@master
with:
image-name: storage-service:${{ env.podman_tag }}
severity-threshold: HIGH
env:
DOCKLE_HOST: "unix:///var/run/docker.sock"
image-ref: storage-service:${{ env.podman_tag }}
severity: HIGH

0 comments on commit 96286d5

Please sign in to comment.