mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2024-11-05 03:21:13 +00:00
7ff5ebee1d
actions-rs/audit-check is unmaintained, hence replace it with actions-rust-lang/audit See: #5929 Signed-off-by: Ruslan Mstoi <ruslan.mstoi@intel.com>
17 lines
333 B
YAML
17 lines
333 B
YAML
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@v4
|
|
- uses: actions-rust-lang/audit@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|