fix(vrd): 🚑 fix The following category slugs are not curren… #92
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: 🧪 Audit | |
on: | |
push: | |
branches: | |
- main | |
- feat/vrd | |
pull_request: | |
branches: | |
- feat/vrd | |
release: | |
types: [created] | |
jobs: | |
dependencies: | |
name: Audit dependencies | |
runs-on: ubuntu-latest | |
steps: | |
- uses: hecrj/setup-rust-action@v2 | |
- name: Install cargo-audit | |
run: cargo install cargo-audit | |
- uses: actions/checkout@v4 | |
- name: Resolve dependencies | |
run: cargo update | |
- name: Audit vulnerabilities | |
run: cargo audit |