chore(ci): modernise and fix audit plus add file license check (#72) #200
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Security audit - daily | |
'on': | |
push: | |
paths: | |
# Run if workflow changes | |
- '.github/workflows/audit.yml' | |
# Run on changed dependencies | |
- '**/Cargo.toml' | |
- '**/Cargo.lock' | |
# Run if the configuration file changes | |
- '**/audit.toml' | |
# Rerun periodicly to pick up new advisories | |
schedule: | |
- cron: '43 05 * * *' | |
# Run manually | |
workflow_dispatch: | |
env: | |
toolchain: nightly-2022-11-03 | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "true" | |
- name: toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: ${{ env.toolchain }} | |
components: rustfmt, clippy | |
- name: cargo check | |
run: | | |
cargo check | |
- uses: rustsec/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |