Skip to content

Commit 3fbfc32

Browse files
committed
Modify audit.yml
1 parent 3a10c59 commit 3fbfc32

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/audit.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,18 @@ jobs:
3434
log-level: warn
3535
command: check
3636
arguments: --all-features
37+
38+
cargo-deny-taiki:
39+
runs-on: ubuntu-latest
40+
steps:
41+
- uses: actions/checkout@v5
42+
- uses: taiki-e/install-action@cargo-deny
43+
- name: Scan for vulnerabilities
44+
run: cargo deny check advisories
45+
46+
audit-success:
47+
name: Audit success
48+
runs-on: ubuntu-latest
49+
needs: [cargo-deny, cargo-deny-taiki]
50+
steps:
51+
- run: echo "All audit jobs successfully finished."

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
- name: Run tests
6767
run: cargo test
6868

69-
ci_success:
69+
ci-success:
7070
name: CI success
7171
runs-on: ubuntu-latest
7272
needs: [clippy, fmt, test]

0 commit comments

Comments
 (0)