Skip to content

Security audit

Security audit #130

Workflow file for this run

on:
pull_request:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
push:
branches:
- master
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
schedule:
- cron: '7 7 7 * *'
name: Security audit
jobs:
audit:
name: Security audit
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Run security audit
uses: actions-rs/audit-check@v1
continue-on-error: true # Don't fail PRs due to potentially out-of-band fixes
with:
token: ${{ secrets.GITHUB_TOKEN }}