mirror of
https://github.com/samsonjs/agate.git
synced 2026-03-25 09:05:50 +00:00
* update dependencies
* add some status badges
crates.io
testing status
dependency status
* add cargo-audit ci
* add dependabot for cargo and github actions updates
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@v1
|
|
- uses: actions-rs/audit-check@v1
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|