name: Security audit on: schedule: - cron: '0 1 * * *' push: paths: - '**/Cargo.toml' - '**/Cargo.lock' pull_request: jobs: security_audit: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Cache cargo registry, index and build directory uses: actions/cache@v2 with: path: | ~/.cargo/registry ~/.cargo/git ./target key: audit-${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} - uses: actions-rs/audit-check@v1 with: token: ${{ secrets.GITHUB_TOKEN }}