Fix feature bugs #1974
Workflow file for this run
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: CI - Security Audit | |
on: | |
pull_request: | |
branches: [ "main" ] | |
push: | |
branches: [ "main" ] | |
workflow_dispatch: | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: cargo generate-lockfile | |
- name: install cargo-audit | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: cargo-audit | |
# IGNORED: | |
# https://rustsec.org/advisories/RUSTSEC-2024-0384 | |
# | |
# Unmaintained dependency used only in WASM builds (by isahc). | |
# Not a problem because WASM support is not implemented yet. | |
- run: cargo audit --deny warnings --ignore RUSTSEC-2024-0384 |