Public Access
* feat: adding optional ignore list * chore: updating lock file * format: prettier tak * chore: new build * chore: adding nvm rc to avoid error with vercel and node v17 * chore: bumping version to 1.3.0 * fix: gh actions does not support sequences as input * chore: refresh build * refactor: use getInputList from actos-rs/core * add ignore to action.yml Co-authored-by: moliva <oliva.miguelh@gmail.com>
18 lines
378 B
YAML
18 lines
378 B
YAML
name: 'rust-audit-check'
|
|
description: 'Run cargo audit and check for security advisories'
|
|
author: 'actions-rs team'
|
|
branding:
|
|
icon: play-circle
|
|
color: black
|
|
inputs:
|
|
token:
|
|
description: GitHub Actions token
|
|
required: true
|
|
ignore:
|
|
description: Comma-separated list of advisory ids to ignore
|
|
required: false
|
|
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|