Skip to content

Commit

Permalink
Create audit.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dvdsk authored Apr 20, 2023
1 parent 43c1b35 commit b1b3dac
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Security audit
on:
pull_request:
# complemented with branch protection on main this will
# need to complete successfully before we auto deploy from main
branches: main
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: rustsec/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b1b3dac

Please sign in to comment.