forked from microsoft/security-devops-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
24 lines (24 loc) · 903 Bytes
/
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
name: 'security-devops-action'
description: 'Run security analyzers.'
author: 'Microsoft'
branding:
icon: 'shield'
color: 'black'
inputs:
config:
description: A file path to a .gdnconfig file.
policy:
description: The name of the well known policy to use. Defaults to GitHub.
default: GitHub
categories:
description: A comma separated list of analyzer categories to run. Values secrets, code, artifacts, IaC, containers. Example IaC,secrets. Defaults to all.
languages:
description: A comma separated list of languages to analyze. Example javascript, typescript. Defaults to all.
tools:
description: A comma separated list of analyzer tools to run. Example bandit, binskim, eslint, template-analyzer, terrascan, trivy.
outputs:
sarifFile:
description: A file path to a SARIF results file.
runs:
using: 'node16'
main: 'lib/action.js'