Skip to content

Commit

Permalink
Update failure severity to CRITICAL (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
cYKatherine authored Feb 26, 2024
1 parent 3986c97 commit 312ce3e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/validate-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
failure_severity:
description: 'Must be one of CRITICAL, HIGH, MEDIUM'
required: false
default: 'HIGH'
default: CRITICAL
fail_on_error:
description: 'If true, will fail the build if vulnerabilities are found'
required: true
Expand All @@ -18,22 +18,22 @@ jobs:
build-publish-docker-default:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@main
with:
failure_severity: ${{ inputs.failure_severity || 'HIGH'}}
failure_severity: ${{ inputs.failure_severity || 'CRITICAL'}}
fail_on_error: ${{ inputs.fail_on_error || true }}
cloud_provider: 'default'
secrets: inherit
build-publish-docker-aws:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@main
with:
failure_severity: ${{ inputs.failure_severity || 'HIGH'}}
failure_severity: ${{ inputs.failure_severity || 'CRITICAL'}}
fail_on_error: ${{ inputs.fail_on_error || true }}
cloud_provider: 'aws'
secrets: inherit
needs: [build-publish-docker-default]
build-publish-docker-gcp:
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@main
with:
failure_severity: ${{ inputs.failure_severity || 'HIGH'}}
failure_severity: ${{ inputs.failure_severity || 'CRITICAL'}}
fail_on_error: ${{ inputs.fail_on_error || true }}
cloud_provider: 'gcp'
secrets: inherit
Expand Down

0 comments on commit 312ce3e

Please sign in to comment.