Validate Docker Image #663
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Docker Image | |
on: | |
workflow_dispatch: | |
inputs: | |
failure_severity: | |
description: The severity to fail the workflow if such vulnerability is detected. DO NOT override it unless a Jira ticket is raised. | |
type: choice | |
options: | |
- CRITICAL,HIGH | |
- CRITICAL,HIGH,MEDIUM | |
- CRITICAL (DO NOT use if JIRA ticket not raised) | |
fail_on_error: | |
description: If true, will fail the build if vulnerabilities are found | |
required: true | |
type: boolean | |
default: true | |
schedule: | |
- cron: '0 20 * * *' #every day at 20:00 | |
jobs: | |
build-publish-docker: | |
uses: IABTechLab/uid2-shared-actions/.github/workflows/shared-validate-image.yaml@v3 | |
with: | |
failure_severity: ${{ inputs.failure_severity || 'CRITICAL,HIGH' }} | |
fail_on_error: ${{ inputs.fail_on_error || true }} | |
java_version: 21 | |
secrets: inherit |