This repository was archived by the owner on Apr 14, 2025. It is now read-only.
Update changelog, iterate version #186
Workflow file for this run
This file contains hidden or 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 | |
on: [push, pull_request] | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: 1.76.0 | |
- name: Install cargo audit compatible with toolchain | |
run: cargo install cargo-audit --locked --version 0.21.1 | |
- name: Run cargo audit | |
run: cargo audit |