1
0
Fork 0
mirror of https://github.com/imjasonh/another-checkov-action synced 2026-07-07 00:22:57 +00:00
another-checkov-action/action.yml
Jason Hall da6609b0a7 take flags
Signed-off-by: Jason Hall <jason@chainguard.dev>
2025-11-10 10:08:20 -05:00

28 lines
703 B
YAML

name: 'Checkov Security Scan'
description: 'Run Checkov security scanner and generate reports'
author: '@imjasonh'
branding:
icon: 'shield'
color: 'blue'
inputs:
fail-on-error:
description: 'Fail the action if security issues are found'
required: false
default: 'true'
checkov-version:
description: 'Version of checkov to install (default: latest)'
required: false
default: 'latest'
checkov-flags:
description: 'Flags to pass to checkov (e.g., "--directory . --framework terraform --skip-check CKV_AWS_1")'
required: false
default: ''
outputs:
results:
description: 'JSON string of the scan results'
runs:
using: 'node20'
main: 'dist/index.js'