Skip to content
This repository was archived by the owner on May 28, 2026. It is now read-only.

Commit 7e0f02c

Browse files
committed
feat: add security workflow (gitleaks, dependency-review, phpaudit)
1 parent 0480b8b commit 7e0f02c

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/security.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
22+
composer-audit:
23+
uses: netresearch/typo3-ci-workflows/.github/workflows/security.yml@main

0 commit comments

Comments
 (0)