Skip to content

Commit

Permalink
Add a cargo audit CRON job. (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois authored Sep 16, 2023
1 parent ec05408 commit b424c27
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Cargo Audit
on:
schedule:
- cron: '0 12 * * *'
workflow_dispatch: null
jobs:
audit:
if: github.repository_owner == 'a-scie'
runs-on: ubuntu-22.04
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Cargo audit (for security vulnerabilities)
run: |
cargo install --version 0.18.1 cargo-audit
cargo audit

0 comments on commit b424c27

Please sign in to comment.