Skip to content

Commit

Permalink
Add GH workflow to check for security vulnerabilities
Browse files Browse the repository at this point in the history
Add Github workflow to check for security vulnerabilities using
`cargo audit`.
This workflow was set up to run every Wednesday at 2:00 UTC.
  • Loading branch information
jsdanielh committed May 16, 2024
1 parent e7ef79b commit 7164eab
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/security_audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Security audit

on:
schedule:
- cron: '0 2 * * WED'

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

0 comments on commit 7164eab

Please sign in to comment.