We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d867e2 commit 6b58bb7Copy full SHA for 6b58bb7
.github/workflows/build-docker-artifacts.yml
@@ -262,7 +262,7 @@ jobs:
262
echo "matrix.component.skip_image_scan = ${{ matrix.component.skip_image_scan }}"
263
echo "parsed SKIP_IMAGE_SCAN = ${{ fromJson(vars.SKIP_IMAGE_SCAN || 'false') }}"
264
- name: Run Trivy vulnerability scanner
265
- if: ${{ inputs.skip_image_scan != true && fromJson(vars.SKIP_IMAGE_SCAN || 'false') != true && matrix.component.skip_image_scan != true }}
+ if: ${{ !inputs.skip_image_scan && !(vars.SKIP_IMAGE_SCAN == 'true') && !matrix.component.skip_image_scan }}
266
uses: aquasecurity/[email protected]
267
with:
268
image-ref: ${{ vars.DV_AWS_ECR_REGISTRY }}/${{ matrix.component.ecr_repository }}:${{ matrix.component.image_tag }}
0 commit comments