Skip to content

Commit

Permalink
Merge pull request #156 from rustaceanrob/audit-10-3
Browse files Browse the repository at this point in the history
ci: add security audit
  • Loading branch information
rustaceanrob authored Oct 3, 2024
2 parents b0a3761 + 2a02d2c commit dc60b4e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Security Audit
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"

jobs:
audit:
permissions:
issues: write
checks: write
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout source code
uses: actions/checkout@v3
- name: Run security audit
uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dc60b4e

Please sign in to comment.