Cargo Audit #285
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
# GENERATED, DO NOT EDIT! | |
# To change, edit `build-support/bin/generate_github_workflows.py` and run: | |
# ./pants run build-support/bin/generate_github_workflows.py | |
jobs: | |
audit: | |
if: github.repository_owner == 'pantsbuild' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 10 | |
- name: Cargo audit (for security vulnerabilities) | |
run: './cargo install --version 0.16.0 cargo-audit | |
./cargo audit | |
' | |
name: Cargo Audit | |
'on': | |
schedule: | |
- cron: 11 8 * * * |