mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
chore(ci): add cargo audit and deny (#580)
Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
This commit is contained in:
committed by
GitHub
parent
006e819d52
commit
7ee503ccdc
66
.github/workflows/dependency-audit.yml
vendored
Normal file
66
.github/workflows/dependency-audit.yml
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
name: Dependency Audits
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: ["main"]
|
||||
schedule:
|
||||
- cron: "0 6 * * 1"
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
jobs:
|
||||
cargo-audit:
|
||||
name: Cargo Audit (${{ matrix.lockfile }})
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
lockfile:
|
||||
- Cargo.lock
|
||||
- bindings/ffi/Cargo.lock
|
||||
- bindings/java/Cargo.lock
|
||||
- bindings/python/Cargo.lock
|
||||
- bindings/ruby/Cargo.lock
|
||||
- bindings/wasm/Cargo.lock
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run cargo audit
|
||||
uses: rustsec/audit-check@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
lockfile: ${{ matrix.lockfile }}
|
||||
|
||||
cargo-deny:
|
||||
name: Cargo Deny (${{ matrix.manifest }})
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
manifest:
|
||||
- Cargo.toml
|
||||
- bindings/ffi/Cargo.toml
|
||||
- bindings/java/Cargo.toml
|
||||
- bindings/python/Cargo.toml
|
||||
- bindings/ruby/Cargo.toml
|
||||
- bindings/ruby/ext/regorusrb/Cargo.toml
|
||||
- bindings/wasm/Cargo.toml
|
||||
- tests/ensure_no_std/Cargo.toml
|
||||
- xtask/Cargo.toml
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Rust
|
||||
uses: ./.github/actions/toolchains/rust
|
||||
|
||||
- name: Run cargo deny
|
||||
uses: EmbarkStudios/cargo-deny-action@v2
|
||||
with:
|
||||
command: check
|
||||
command-arguments: advisories bans
|
||||
manifest-path: ${{ matrix.manifest }}
|
||||
Reference in New Issue
Block a user