Skip to content

Commit

Permalink
ci: added security audit
Browse files Browse the repository at this point in the history
  • Loading branch information
maschad committed Jan 29, 2025
1 parent ba8241b commit 4ef5635
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Security audit
on:
schedule:
- cron: "0 0 * * *" # Run at midnight every day
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"

jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: rustsec/audit-check@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4ef5635

Please sign in to comment.