Skip to content

Commit

Permalink
Merge pull request #233 from tnull/2024-01-introduce-cargo-audit
Browse files Browse the repository at this point in the history
Introduce CI workflow running `cargo audit`
  • Loading branch information
tnull authored Feb 1, 2024
2 parents 5153c6c + 13a5d73 commit b2272e5
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Security audit
on:
schedule:
- cron: '0 0 * * *'

jobs:
audit:
strategy:
matrix:
platform: [
ubuntu-latest,
macos-latest,
]
runs-on: ${{ matrix.platform }}
permissions:
issues: write
issues-reason: to create issues
checks: write
checks-reason: to create checks
steps:
- uses: actions/checkout@v3
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b2272e5

Please sign in to comment.