Salus security scan #413
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
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" | |
name: Salus security scan | |
jobs: | |
semgrep: | |
runs-on: ubuntu-latest | |
name: Semgrep | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Scan | |
id: scan | |
run: | | |
set -eo pipefail; | |
python3 -m pip install semgrep; | |
semgrep scan --error --config https://semgrep.dev/p/trailofbits --config semgrep_configs | |
salus_scan_job: | |
runs-on: ubuntu-latest | |
name: Salus Security Scan | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Salus Scan | |
id: salus_scan | |
uses: federacy/[email protected] | |
env: | |
SALUS_CONFIGURATION: "file://salus-config.yaml" | |
with: | |
report_uri: file://./salus-report.txt | |
report_format: txt | |
- uses: actions/upload-artifact@v4 | |
if: failure() | |
with: | |
name: Scan results | |
path: ./salus-report.txt |