We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3bae525 + f30f890 commit bfc7b33Copy full SHA for bfc7b33
1 file changed
.github/workflows/security-scan.yml
@@ -12,6 +12,7 @@ permissions:
12
jobs:
13
backend-security:
14
runs-on: ubuntu-latest
15
+ timeout-minutes: 15
16
steps:
17
- uses: actions/checkout@v4
18
- name: Set up Go
@@ -32,7 +33,8 @@ jobs:
32
33
working-directory: backend
34
run: |
35
go install github.com/securego/gosec/v2/cmd/gosec@latest
- gosec -conf .gosec.json -severity high -confidence high ./...
36
+ # exclude ent/ — auto-generated ORM code, not subject to manual security review
37
+ gosec -conf .gosec.json -severity high -confidence high -exclude-dir=ent ./...
38
39
frontend-security:
40
0 commit comments