forked from dependency-check/Dependency-Check_Action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
32 lines (32 loc) · 760 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
25
26
27
28
29
30
31
32
name: 'OWASP Dependency Checker'
description: 'GitHub action to execute dependency check as part of a GitHub Workflow (forked)'
Author: 'Shay-valid8Me'
branding:
icon: 'shield'
color: 'red'
inputs:
project:
required: true
path:
required: true
format:
required: true
out:
required: true
default: 'reports'
args:
required: false
runs:
using: 'docker'
image: 'Dockerfile'
args:
- '--project'
- '${{ inputs.project }}'
- '--scan'
- '/github/workspace/${{ inputs.path }}'
- '--format'
- '${{ inputs.format }}'
- '--out'
- '/github/workspace/${{ inputs.out }}'
- '--noupdate'
- ${{ inputs.args }}