remove and replace with trivy

This commit is contained in:
silas 2022-10-18 19:27:52 +01:00 committed by GitHub
parent 4ee74cde0f
commit 423ac1f8a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
name: Cargo Audit
on:
push:
branches:
- main
- dev
pull_request:
workflow_dispatch:
jobs:
cargo-audit:
name: Cargo Vulnerability Scanner
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Checkout submodules
run: git submodule update --init
# Install cargo audit
- name: Install Cargo Audit
uses: actions-rs/install@v0.1
with:
crate: cargo-audit
version: latest
# Run cargo audit using args from .cargo/audit.toml (ignores, etc.)
- name: Run Cargo Audit
run: cargo audit -c always