Skip to content

Commit eb2dead

Browse files
committed
feat: add security workflow (gitleaks, dependency-review, noneaudit)
1 parent c28d37d commit eb2dead

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/security.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Security
2+
3+
on:
4+
push:
5+
branches: [main, master]
6+
pull_request:
7+
branches: [main, master]
8+
9+
jobs:
10+
gitleaks:
11+
uses: netresearch/.github/.github/workflows/gitleaks.yml@main
12+
secrets:
13+
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE }}
14+
15+
dependency-review:
16+
if: github.event_name == 'pull_request'
17+
uses: netresearch/.github/.github/workflows/dependency-review.yml@main
18+
permissions:
19+
contents: read
20+
pull-requests: write
21+

0 commit comments

Comments
 (0)