Skip to content

Commit 11974fe

Browse files
committed
add dependabot yaml
Signed-off-by: Carlos Gomes <[email protected]>
1 parent 2a5fdd8 commit 11974fe

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/dependabot.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
2+
# mostly from https://github.com/microsoft/torchgeo/blob/main/.github/dependabot.yml
3+
version: 2
4+
updates:
5+
- package-ecosystem: "github-actions"
6+
directory: "/"
7+
schedule:
8+
interval: "weekly"
9+
- package-ecosystem: "pip"
10+
directory: "/"
11+
schedule:
12+
interval: "daily"
13+
groups:
14+
# torchvision pins torch, must update in unison
15+
torch:
16+
patterns:
17+
- "torch"
18+
- "torchvision"
19+
ignore:
20+
# setuptools releases new versions almost daily
21+
- dependency-name: "setuptools"
22+
update-types: ["version-update:semver-patch"]
23+
# segmentation-models-pytorch pins timm, must update in unison
24+
- dependency-name: "timm"

0 commit comments

Comments
 (0)