Skip to content

Commit c26da41

Browse files
committed
fix(dependabot): fix broken config and add cooldown
- Remove private registry config for npm.pkg.github.com as internal packages are now accessible without a token (CI-1040) - Add github-actions ecosystem to allow updating internal actions - Add 7-day cooldown to npm and github-actions to mitigate supply chain attacks (CI-1108) Co-Authored-By: opencode noreply@opencode.ai
1 parent 3516d09 commit c26da41

File tree

1 file changed

+11
-8
lines changed

1 file changed

+11
-8
lines changed

.github/dependabot.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
version: 2
2-
registries:
3-
npm-github:
4-
type: npm-registry
5-
url: https://npm.pkg.github.com
6-
token: ${{secrets.STAFFBOT_NPM_READ}}
7-
82
updates:
93
- package-ecosystem: "npm"
104
directory: "/"
@@ -14,5 +8,14 @@ updates:
148
default-days: 7
159
labels:
1610
- "dependencies"
17-
registries:
18-
- npm-github
11+
cooldown:
12+
default-days: 7
13+
14+
- package-ecosystem: "github-actions"
15+
directory: "/"
16+
schedule:
17+
interval: "weekly"
18+
labels:
19+
- "dependencies"
20+
cooldown:
21+
default-days: 7

0 commit comments

Comments
 (0)