Skip to content

Commit

Permalink
add dependabot yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlosGomes98 committed Jul 4, 2024
1 parent 9e12e79 commit 8e456b1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
# mostly from https://github.com/microsoft/torchgeo/blob/main/.github/dependabot.yml
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "daily"
groups:
# torchvision pins torch, must update in unison
torch:
patterns:
- "torch"
- "torchvision"
ignore:
# setuptools releases new versions almost daily
- dependency-name: "setuptools"
update-types: ["version-update:semver-patch"]
# segmentation-models-pytorch pins timm, must update in unison
- dependency-name: "timm"

0 comments on commit 8e456b1

Please sign in to comment.