mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 04:47:58 +00:00
4651b04d5a
Bumps [actions-rs/audit-check](https://github.com/actions-rs/audit-check) from 1 to 1.2.0. - [Release notes](https://github.com/actions-rs/audit-check/releases) - [Changelog](https://github.com/actions-rs/audit-check/blob/master/CHANGELOG.md) - [Commits](https://github.com/actions-rs/audit-check/compare/v1...v1.2.0) Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
406 B
YAML
21 lines
406 B
YAML
name: Security audit
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**/Cargo.toml'
|
|
- '**/Cargo.lock'
|
|
push:
|
|
paths:
|
|
- '**/Cargo.toml'
|
|
- '**/Cargo.lock'
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
jobs:
|
|
security_audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2.3.4
|
|
- uses: actions-rs/audit-check@v1.2.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|