Skip to content

Commit

Permalink
Merge pull request #20 from gcmurphy/fix/github-action
Browse files Browse the repository at this point in the history
add a cargo-audit github action
  • Loading branch information
gcmurphy authored Mar 1, 2024
2 parents d3bb442 + 51d4b8f commit 89bdc81
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Security audit
on:
schedule:
- cron: '0 0 * * *'
workflow:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 89bdc81

Please sign in to comment.