2021-07-27 06:46:25 -04:00
|
|
|
name: Security Audit
|
2021-11-07 08:16:46 -05:00
|
|
|
|
2021-07-27 06:46:25 -04:00
|
|
|
on:
|
|
|
|
schedule:
|
2021-11-07 08:16:46 -05:00
|
|
|
- cron: "0 0 * * 0"
|
|
|
|
|
2021-07-27 06:46:25 -04:00
|
|
|
jobs:
|
|
|
|
audit:
|
2021-11-07 08:16:46 -05:00
|
|
|
name: Audit
|
2023-05-10 17:40:08 -04:00
|
|
|
runs-on: ubuntu-22.04
|
2021-07-27 06:46:25 -04:00
|
|
|
steps:
|
2021-11-07 08:16:46 -05:00
|
|
|
- name: Checkout the repository
|
|
|
|
uses: actions/checkout@master
|
|
|
|
- name: Install Rust
|
|
|
|
uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
toolchain: stable
|
|
|
|
profile: minimal
|
|
|
|
override: true
|
|
|
|
- name: Run cargo-audit
|
|
|
|
uses: actions-rs/audit-check@v1
|
2021-07-27 06:46:25 -04:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|