21 lines
484 B
YAML
21 lines
484 B
YAML
name: "compose file parser"
|
|
description: "security checks for docker compose files"
|
|
inputs:
|
|
path:
|
|
description: "path to docker compose file"
|
|
required: true
|
|
default: "compose.yaml"
|
|
show:
|
|
description: "what level of issues to show (all|fatal)"
|
|
required: false
|
|
default: "all"
|
|
outputs:
|
|
report:
|
|
description: "results of the scan"
|
|
runs:
|
|
using: docker
|
|
image: Dockerfile
|
|
env:
|
|
COMPOSE_FILE_PATH: ${{ inputs.path }}
|
|
LOG_LEVEL: ${{ inputs.show }}
|