mirror of
https://github.com/railwayapp/cli
synced 2026-04-21 14:07:23 +00:00
21 lines
380 B
YAML
21 lines
380 B
YAML
name: Cargo audit
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "**/Cargo.toml"
|
|
- "**/Cargo.lock"
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
jobs:
|
|
security_audit:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: checkout
|
|
uses: actions/checkout@v3.3.0
|
|
|
|
- name: cargo audit
|
|
uses: actions-rs/audit-check@v1.2.0
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|