We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d11104 commit 8285a2cCopy full SHA for 8285a2c
2 files changed
.github/workflows/secure.yml
@@ -17,7 +17,7 @@ jobs:
17
security-events: write
18
steps:
19
- uses: actions/checkout@v4
20
- - run: semgrep scan --sarif --output=semgrep.sarif --error --severity=WARNING
+ - run: semgrep scan --sarif --output=semgrep.sarif --severity=WARNING --severity=ERROR
21
env:
22
SEMGREP_RULES: >-
23
p/bandit
@@ -26,6 +26,7 @@ jobs:
26
p/cwe-top-25
27
p/default
28
p/gitlab-bandit
29
+ p/gitlab
30
p/gitleaks
31
p/insecure-transport
32
p/owasp-top-ten
selvpcclient/commands/keypair.py
@@ -82,6 +82,7 @@ class List(ListCommand):
82
sorting_support = True
83
columns = ['name', 'user_id', 'regions']
84
_formatters = {
85
+ # nosemgrep: python.lang.maintainability.return.return-not-in-function
86
"regions": lambda line: "\n".join(line["regions"])
87
}
88
0 commit comments