feat(projects): use archives for project files to be able to include media files etc #7161
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 }} |