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:
j-k 2021-10-14 14:28:51 +01:00 committed by GitHub
parent a1649b9fda
commit 0d0c2407ab
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 98 additions and 50 deletions

18
.github/workflows/cargo-audit.yml vendored Normal file
View 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 }}