fix(deps): update rust crate zip to v2.2.2 #7143
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: Security Audit | |
on: | |
push: | |
branches: [main] | |
paths: | |
- "**/Cargo.toml" | |
- "Cargo.lock" | |
pull_request: | |
branches: [main] | |
paths: | |
- "**/Cargo.toml" | |
- "Cargo.lock" | |
schedule: | |
- cron: "0 0 * * 0" | |
jobs: | |
security_audit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Security audit | |
uses: rustsec/audit-check@v2.0.0 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} |