2021-07-17 22:45:24 +02:00
|
|
|
name: 'flawfinder_scan'
|
|
|
|
description: 'Execute Flawfinder to scan source code for vulnerabilities'
|
2021-06-23 04:17:03 +02:00
|
|
|
inputs:
|
2021-06-24 20:56:59 +02:00
|
|
|
arguments:
|
|
|
|
description: 'Command arguments to be sent to Flawfinder'
|
|
|
|
required: true
|
|
|
|
default: ''
|
|
|
|
output:
|
|
|
|
description: 'Output file name'
|
|
|
|
required: true
|
|
|
|
default: ''
|
2021-06-23 04:17:03 +02:00
|
|
|
runs:
|
|
|
|
using: 'docker'
|
|
|
|
image: 'Dockerfile'
|
|
|
|
args:
|
2021-06-24 20:56:59 +02:00
|
|
|
- ${{ inputs.arguments }}
|
|
|
|
- ${{ inputs.output }}
|