Skip to content

Commit

Permalink
Update action
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross35 committed Nov 30, 2023
1 parent 7e1337f commit b7df8b7
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .github/workflows/validation-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,13 +127,19 @@ jobs:
name: Audit dependencies for security & license compatibility
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run security audit with cargo-audit
uses: rustsec/audit-check@v1.4.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Audit dependency licenses with cargo-deny
uses: EmbarkStudios/cargo-deny-action@v1
- uses: actions/checkout@v3
- uses: taiki-e/install-action@cargo-binstall
- run: cargo binstall cargo-audit
- name: Run security audit with cargo-audit
run: cd rust/ && cargo audit
- name: Audit dependency licenses with cargo-deny
uses: EmbarkStudios/cargo-deny-action@v1
with:
arguments: --manifest-path rust/Cargo.toml

# uses: rustsec/audit-check@v1.4.1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}

doc:
name: "Docs (cargo doc) & Pub"
Expand Down

0 comments on commit b7df8b7

Please sign in to comment.