Update symfonycorp.yml
This commit is contained in:
parent
23872225df
commit
c8ac17f5f6
1 changed files with 25 additions and 2 deletions
27
.github/workflows/symfonycorp.yml
vendored
27
.github/workflows/symfonycorp.yml
vendored
|
@ -1,2 +1,25 @@
|
|||
name: The PHP Security Checker
|
||||
uses: symfonycorp/security-checker-action@v2
|
||||
name: 'The PHP Security Checker'
|
||||
description: 'Checks composer.json for known vulnerabilities in your package dependencies'
|
||||
branding:
|
||||
icon: 'umbrella'
|
||||
color: 'gray-dark'
|
||||
inputs:
|
||||
lock:
|
||||
description: 'The path to composer.lock is stored (root directory by default)'
|
||||
required: false
|
||||
default: './composer.lock'
|
||||
disable-exit-code:
|
||||
description: 'Whether to fail when issues are detected (false by default)'
|
||||
required: false
|
||||
default: 0
|
||||
outputs:
|
||||
vulns:
|
||||
description: 'The detected vulnerabilities as JSON'
|
||||
runs:
|
||||
using: 'docker'
|
||||
image: 'docker://symfonycorp/cli:latest'
|
||||
args:
|
||||
- check:security
|
||||
- "--dir"
|
||||
- ${{ inputs.lock }}
|
||||
- "--disable-exit-code=${{ inputs.disable-exit-code }}"
|
||||
|
|
Reference in a new issue