Files
compose-parser/action.yaml
jake b7389117ac breaking push
- this push breaks what little functionality we had
- WIP push
- cleaning house, stand by
2025-11-10 16:37:49 -05:00

20 lines
450 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"
ignore:
description: "checks to ignore"
required: false
outputs:
report:
description: "results of the scan"
runs:
using: docker
image: Dockerfile
env:
COMPOSE_FILE_PATH: ${{ inputs.path }}
IGNORED_CHECKS: ${{ inputs.ignore }}