Skip to content

Commit c4ad18c

Browse files
committed
feat: Update grype configuration in release-arm.yaml
- Added `grype` option for NVIDIA Jetson AGX Orin model, set to true - Set `grype` option for NVIDIA Jetson Orin NX model to false due to excessive vulnerabilities in the L4T rootfs - Updated main `grype` configuration to use matrix values for flexibility Signed-off-by: Itxaka <itxaka@kairos.io>
1 parent 59b62e5 commit c4ad18c

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/release-arm.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,11 @@ jobs:
105105
- model: "nvidia-jetson-agx-orin"
106106
base_image: "ubuntu:22.04"
107107
cleanup: true
108+
grype: true
108109
- model: "nvidia-jetson-orin-nx"
109110
base_image: "ubuntu:22.04"
110111
cleanup: true
112+
grype: false # too many vulns under the L4T rootfs
111113
with:
112114
auroraboot_version: "v0.19.1"
113115
dockerfile_path: "images/Dockerfile"
@@ -121,7 +123,7 @@ jobs:
121123
registry_domain: "quay.io"
122124
registry_namespace: "kairos"
123125
iso: ${{ matrix.model == 'generic' }} # only produce ISOs for generic
124-
grype: true
126+
grype: ${{ matrix.grype }}
125127
grype_sarif: true
126128
trivy: true
127129
trivy_sarif: true

0 commit comments

Comments
 (0)