add security scanner
This commit is contained in:
parent
b03e2456ee
commit
5ad6114423
1 changed files with 18 additions and 10 deletions
|
@ -52,7 +52,6 @@ upload-prerelease:
|
|||
- npm version --no-git-tag-version prerelease
|
||||
- npm publish ./target/npm-build/mastodon_bot --access public
|
||||
|
||||
|
||||
upload-release:
|
||||
stage: upload
|
||||
rules:
|
||||
|
@ -70,3 +69,12 @@ upload-release:
|
|||
- cp README.md target/npm-build/mastodon_bot/
|
||||
- npm version --no-git-tag-version $CI_COMMIT_TAG
|
||||
- npm publish ./target/npm-build/mastodon_bot --access public
|
||||
|
||||
sast:
|
||||
variables:
|
||||
SAST_EXCLUDED_ANALYZERS:
|
||||
bandit, brakeman, flawfinder, gosec, kubesec, phpcs-security-audit,
|
||||
pmd-apex, security-code-scan, sobelow, spotbugs
|
||||
stage: test
|
||||
include:
|
||||
- template: Security/SAST.gitlab-ci.yml
|
||||
|
|
Reference in a new issue