diff --git a/.github/workflows/audit.yaml b/.github/workflows/audit.yaml new file mode 100644 index 000000000..17e3fe465 --- /dev/null +++ b/.github/workflows/audit.yaml @@ -0,0 +1,15 @@ +name: Cloud Hypervisor Dependency Audit +on: + pull_request: + paths: + - '**/Cargo.toml' + - '**/Cargo.lock' +jobs: + security_audit: + name: Audit + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: actions-rs/audit-check@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file