forked from kiesraad/abacus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdependabot.yml
33 lines (33 loc) · 965 Bytes
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns: ["*"]
- package-ecosystem: "cargo"
directory: "/backend"
schedule:
interval: "weekly"
groups:
cargo:
patterns: ["*"]
- package-ecosystem: "npm"
directory: "/frontend"
schedule:
interval: "weekly"
groups:
npm:
patterns: ["*"]
ignore:
- dependency-name: "@types/node"
# Depends on Node.js version, which we upgrade manually
update-types: ["version-update:semver-major"]
- dependency-name: "eslint"
# ESLint major upgrades usually have breaking changes, #213 for ESLint 9
update-types: ["version-update:semver-major"]
- dependency-name: "typescript"
# TypeScript 5.6 is not compatible with typescript-eslint, #439
update-types: ["version-update:semver-minor"]