mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 20:45:29 +00:00
18 lines
380 B
YAML
18 lines
380 B
YAML
name: Cargo Audit Scanning
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**/Cargo.toml"
|
|
- "**/Cargo.lock"
|
|
schedule:
|
|
- cron: "0 14 * * *" # 14:00 UTC
|
|
permissions:
|
|
repository-projects: read
|
|
jobs:
|
|
cargo-audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions-rs/audit-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|