Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/build-docker-artifacts-config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@
"type": "string",
"description": "ECR repository to push the image to"
},
"skip_image_scan": {
"type": "boolean",
"default": false,
"description": "[Deprecated: use scan_high_severity or the .trivyignore file instead] Skip scanning the image for vulnerabilities"
},
"scan_high_severity": {
"type": "boolean",
"default": true,
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/build-docker-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ on:
type: boolean
required: false
default: true
skip_image_scan:
type: boolean
required: false
default: false
scan_high_severity:
description: 'Include high severity'
type: boolean
Expand Down Expand Up @@ -258,7 +254,6 @@ jobs:
echo "severity=HIGH,CRITICAL" >> "$GITHUB_OUTPUT"
fi
- name: Run Trivy vulnerability scanner
if: ${{ inputs.skip_image_scan != true && fromJson(vars.SKIP_IMAGE_SCAN || 'false') != true && matrix.component.skip_image_scan != true }}
uses: aquasecurity/[email protected]
with:
image-ref: ${{ vars.DV_AWS_ECR_REGISTRY }}/${{ matrix.component.ecr_repository }}:${{ matrix.component.image_tag }}
Expand Down