-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
32 lines (32 loc) · 1.09 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: "Xeol End-of-Life (EOL) Scan"
description: "Scan docker containers with Xeol for End-of-Life (EOL) packages"
branding:
color: blue
icon: check-circle
inputs:
image:
description: 'The image to scan. This option is mutually exclusive with "path" and "sbom". '
required: false
path:
description: 'The path to scan. This option is mutually exclusive with "image" and "sbom".'
required: false
sbom:
description: 'The SBOM file to scan. This option is mutually exclusive with "path" and "image".'
required: false
fail-build:
description: "Set to false to avoid failing based on finding an EOL package. Default is to fail when any EOL package is found."
required: false
default: "true"
output-format:
description: 'Set the output parameter after successful action execution. Valid choices are "json" and "table".'
required: false
default: "table"
api-key:
description: "The Xeol API key to use for scanning."
required: false
outputs:
json:
description: "Path to a JSON report file for the image"
runs:
using: "node20"
main: "dist/index.js"