Bump hybrid-array
to v0.2 (final) (#1701)
#3540
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 | |
on: | |
pull_request: | |
paths: | |
- .github/workflows/security-audit.yml | |
- '**/Cargo.lock' | |
push: | |
branches: master | |
paths: '**/Cargo.lock' | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
security_audit: | |
name: Security Audit Workspace | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache cargo bin | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cargo/bin | |
key: ${{ runner.os }}-cargo-audit-v0.20-ubuntu-v24.04 | |
- uses: rustsec/audit-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |