2025-11-09 14:15:50 -05:00
|
|
|
name: "compose file parser"
|
|
|
|
|
description: "security checks for docker compose files"
|
|
|
|
|
inputs:
|
|
|
|
|
path:
|
|
|
|
|
description: "path to docker compose file"
|
|
|
|
|
required: true
|
|
|
|
|
default: "compose.yaml"
|
2025-11-10 16:37:49 -05:00
|
|
|
ignore:
|
2025-11-11 13:33:14 -05:00
|
|
|
description: "checks to ignore (doesn't work yet)"
|
2025-11-10 16:37:49 -05:00
|
|
|
required: false
|
2025-11-09 14:15:50 -05:00
|
|
|
outputs:
|
|
|
|
|
report:
|
|
|
|
|
description: "results of the scan"
|
|
|
|
|
runs:
|
|
|
|
|
using: docker
|
|
|
|
|
image: Dockerfile
|
|
|
|
|
env:
|
2025-11-09 14:20:34 -05:00
|
|
|
COMPOSE_FILE_PATH: ${{ inputs.path }}
|
2025-11-10 16:37:49 -05:00
|
|
|
IGNORED_CHECKS: ${{ inputs.ignore }}
|