Create blank.yml #82
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
name: "Snyk Python (3.8)" | |
description: "Check your Python application for vulnerabilties using Snyk" | |
author: "Gareth Rushgrove" | |
branding: | |
icon: "alert-triangle" | |
color: "yellow" | |
inputs: | |
command: | |
description: "Which Snyk command to run, defaults to test" | |
default: test | |
args: | |
description: "Additional arguments to pass to Snyk" | |
json: | |
description: "Output a snyk.json file with results if running the test command" | |
default: false | |
runs: | |
using: "docker" | |
image: "docker://snyk/snyk:python-3.8" | |
env: | |
FORCE_COLOR: 2 | |
SNYK_INTEGRATION_NAME: GITHUB_ACTIONS | |
SNYK_INTEGRATION_VERSION: python-3.8 | |
args: | |
- snyk | |
- ${{ inputs.command }} | |
- ${{ inputs.args }} |