Skip to content

Commit c201339

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 ae6c5a6 commit c201339

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

.github/dependabot.yml

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
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: "/"
115
schedule:
126
interval: "weekly"
137
labels:
148
- "dependencies"
15-
registries:
16-
- npm-github
9+
cooldown:
10+
default-days: 7
11+
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
16+
labels:
17+
- "dependencies"
18+
cooldown:
19+
default-days: 7

0 commit comments

Comments
 (0)