mirror of
https://github.com/YGGverse/agate.git
synced 2026-04-08 12:35:28 +00:00
update dependencies, add dependabot (#70)
* update dependencies
* add some status badges
crates.io
testing status
dependency status
* add cargo-audit ci
* add dependabot for cargo and github actions updates
This commit is contained in:
parent
a1649b9fda
commit
0d0c2407ab
4 changed files with 98 additions and 50 deletions
18
.github/workflows/cargo-audit.yml
vendored
Normal file
18
.github/workflows/cargo-audit.yml
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
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 }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue