We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49da29 commit 053adb9Copy full SHA for 053adb9
.github/workflows/main.yml
@@ -16,7 +16,7 @@ jobs:
16
shell: bash
17
run: |
18
echo "docker_repo=${{ env.REPO }}" >> $GITHUB_ENV
19
- make build
+ make build && make build-arm64
20
- name: Trivy vulnerability scanner
21
uses: aquasecurity/[email protected]
22
with:
@@ -26,6 +26,15 @@ jobs:
26
ignore-unfixed: true
27
vuln-type: 'os,library'
28
severity: 'CRITICAL,HIGH'
29
+ - name: Trivy vulnerability scanner on arm64 image
30
+ uses: aquasecurity/[email protected]
31
+ with:
32
+ image-ref: '${{ env.docker_repo }}:latest-arm64'
33
+ format: 'table'
34
+ exit-code: '1'
35
+ ignore-unfixed: true
36
+ vuln-type: 'os,library'
37
+ severity: 'CRITICAL,HIGH'
38
test:
39
runs-on: ubuntu-latest
40
steps:
0 commit comments