From fd9d4d824f1a6b216b25735ba2199d9ad3d24ae3 Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Wed, 4 Sep 2024 11:04:50 -0400 Subject: [PATCH] Create dependabot.yml --- .github/dependabot.yml | 48 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..9636dc5ae --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,48 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "main" + schedule: + interval: "weekly" + - package-ecosystem: maven + directory: / + schedule: + interval: daily + target-branch: main + ignore: + # only upgrade by minor or patch + - dependency-name: "*" + update-types: + - version-update:semver-major + - package-ecosystem: maven + directory: / + schedule: + interval: daily + target-branch: 3.1.x + ignore: + # only upgrade by minor or patch + - dependency-name: "*" + update-types: + - version-update:semver-major + - version-update:semver-minor + - package-ecosystem: npm + target-branch: docs-build + directory: / + schedule: + interval: weekly + - package-ecosystem: npm + target-branch: main + directory: /docs + schedule: + interval: weekly + - package-ecosystem: npm + target-branch: 3.1.x + directory: /docs + schedule: + interval: weekly