-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mikus Rozenbergs
committed
Mar 7, 2024
1 parent
0ee0bf9
commit a952074
Showing
1 changed file
with
3 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,3 @@ | ||
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' | ||
format: | ||
description: 'The output format (ansi by default, supported: ansi, junit, markdown, json, or yaml)' | ||
required: false | ||
default: ansi | ||
disable-exit-code: | ||
description: 'Whether to continue when issues are detected (false by default)' | ||
required: false | ||
default: 0 | ||
outputs: | ||
vulns: | ||
description: 'The detected vulnerabilities as JSON' | ||
runs: | ||
using: 'docker' | ||
image: 'docker://ghcr.io/symfony-cli/symfony-cli:v5' | ||
args: | ||
- "security:check" | ||
- "--format" | ||
- ${{ inputs.format }} | ||
- "--dir" | ||
- ${{ inputs.lock }} | ||
- "--disable-exit-code=${{ inputs.disable-exit-code }}" | ||
- name: The PHP Security Checker | ||
uses: symfonycorp/security-checker-action@v5 | ||
|