-
Notifications
You must be signed in to change notification settings - Fork 283
/
dependabot.yml
124 lines (114 loc) · 4.11 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
labels: ["component/dependencies"]
# Maintain dependencies for npm
- package-ecosystem: "npm"
directory: "/"
schedule:
interval: "daily"
open-pull-requests-limit: 5
labels: ["component/dependencies"]
ignore:
- # Needs to be updated along with NodeJS version.
dependency-name: "@types/node"
versions: [ ">18" ]
- # Need to migrate to Vue 3 before moving beyond 2.7.x.
dependency-name: "vue"
versions: [ ">2" ]
- # @vue/test-utils v2 is for Vue 3; we're on Vue 2 for now
dependency-name: "@vue/test-utils"
versions: [ ">1" ]
- # Since we no longer pull in Nuxt (i.e. we have "ejected"), newer
# versions of this package mis-detect and think we're using Nuxt 3 (with
# Vue 3), and uses the wrong set of linters. This happened in v12, so
# we ignore everything higher than 11.
dependency-name: "@nuxtjs/eslint-config-typescript"
versions: [ ">11" ]
- # Electron major bumps are too complicated; we need to do those manually.
dependency-name: "electron"
update-types: [ "version-update:semver-major" ]
- # TypeScript bumping has issues with our code right now.
# See https://github.com/microsoft/TypeScript/issues/56628
dependency-name: "typescript"
update-types: [ "version-update:semver-major" ]
- # node-fetch 3+ requires ECMAScript modules, but Electron doesn't
# support that. See https://github.com/electron/electron/issues/21457
dependency-name: "node-fetch"
versions: [ ">2" ]
- # This needs to be done in lockstep with node-fetch.
dependency-name: "@types/node-fetch"
versions: [ ">2" ]
- # We don't utilize @rancher/shell in a meaningful way. It is safe to
# ignore until we arrive a solution that uses it.
dependency-name: "@rancher/shell"
versions: [ ">0.1" ]
- # unfetch release 5.0.0 dropped necessary files.
# See https://github.com/developit/unfetch/issues/ 162, 163, 167, 172, 176
# Not the best-maintained library out there.
# It's used only by the nuxt pseudo-submodule
# Assume the next release will fix it.
dependency-name: "unfetch"
versions: [ "5.0.0" ]
# Maintain dependencies for Golang
- package-ecosystem: "gomod"
directory: "/src/go/docker-credential-none"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "jandubois" ]
- package-ecosystem: "gomod"
directory: "/src/go/extension-proxy"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "Nino-K" ]
- package-ecosystem: "gomod"
directory: "/src/go/github-runner-monitor"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "mook-as" ]
- package-ecosystem: "gomod"
directory: "/src/go/mock-wsl"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "Nino-K" ]
- package-ecosystem: "gomod"
directory: "/src/go/nerdctl-stub"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "Nino-K" ]
- package-ecosystem: "gomod"
directory: "/src/go/rdctl"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "jandubois" ]
- package-ecosystem: "gomod"
directory: "/src/go/vtunnel"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "Nino-K" ]
- package-ecosystem: "gomod"
directory: "/src/go/wsl-helper"
schedule:
interval: "daily"
open-pull-requests-limit: 1
labels: ["component/dependencies"]
reviewers: [ "Nino-K" ]