From ee8535c324e9c673eed269afefb0aab678eba7cc Mon Sep 17 00:00:00 2001 From: Alex Lowe Date: Thu, 26 Sep 2024 12:02:07 -0400 Subject: [PATCH] ci: add security scan workflow --- .github/workflows/security-scan.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/security-scan.yaml diff --git a/.github/workflows/security-scan.yaml b/.github/workflows/security-scan.yaml new file mode 100644 index 0000000..a42ba48 --- /dev/null +++ b/.github/workflows/security-scan.yaml @@ -0,0 +1,17 @@ +name: Security scan +on: + pull_request: + push: + branches: + - main + - hotfix/* + - work/secscan # For development + +jobs: + python-scans: + name: Scan Python project + uses: lengau/starflow/.github/workflows/scan-python.yaml@work/secscan + with: + packages: python-apt-dev + # Ignore this requirements file because it does relative path things. + requirements-find-args: "! -path 'docs/.sphinx/*' -D exec"