Skip to content

Commit 994a7f5

Browse files
authored
Add nightly workflow (#361)
add nightly workflow to automatically scan third-party packages for vulnerabilities and generate an SBOM
1 parent 95104c0 commit 994a7f5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/nightly_scan.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Security Scan
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- release/*
8+
workflow_dispatch:
9+
10+
jobs:
11+
security_scan:
12+
uses: ansys-internal/ci-templates/.github/workflows/security-scan-mend.yml@v7
13+
with:
14+
package_type: 'poetry+npm'
15+
needs: 'sca,sast,sbom'
16+
secrets: inherit

0 commit comments

Comments
 (0)