Skip to content

Commit adff939

Browse files
chore(security): secret scanning + dependabot cooldown (#348)
* chore(security): add gitleaks secret scanning workflow * chore(security): add dependabot with 7-day cooldown
1 parent e2a63f0 commit adff939

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: github-actions
4+
directory: /
5+
schedule:
6+
interval: weekly
7+
open-pull-requests-limit: 5
8+
cooldown:
9+
default-days: 7
10+
exclude:
11+
- toptal/*
12+
- package-ecosystem: npm
13+
directory: /
14+
schedule:
15+
interval: weekly
16+
open-pull-requests-limit: 5
17+
cooldown:
18+
default-days: 7
19+
exclude:
20+
- toptal/*
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: Secret Scan
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
call_secret_scanning:
8+
uses: toptal/actions/.github/workflows/security-scan.yml@v3.6.3

0 commit comments

Comments
 (0)