Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/security-audit.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name: Security Audit

Check warning on line 1 in .github/workflows/security-audit.yml

View workflow job for this annotation

GitHub Actions / Lint YAML Files

1:1 [document-start] missing document start "---"

# This workflow performs automated security audits
# It checks for vulnerabilities and security issues in dependencies and code

on:

Check warning on line 6 in .github/workflows/security-audit.yml

View workflow job for this annotation

GitHub Actions / Lint YAML Files

6:1 [truthy] truthy value should be one of [false, true]
schedule:
# Run daily at 2 AM UTC
- cron: '0 2 * * *'
Expand Down Expand Up @@ -56,7 +56,7 @@
continue-on-error: true

- name: Upload Bandit results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
if: always()
with:
name: bandit-security-report
Expand Down Expand Up @@ -85,7 +85,7 @@
continue-on-error: true

- name: Upload Safety results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v5
if: always()
with:
name: safety-security-report
Expand Down
Loading