- this push breaks what little functionality we had - WIP push - cleaning house, stand by
20 lines
450 B
YAML
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 }}
|