From 8bc5decb8e4d60e02dc4936eb8ac9a1fc52033fa Mon Sep 17 00:00:00 2001 From: Olga MaciaszekSharma Date: Thu, 21 Sep 2023 17:20:20 +0200 Subject: [PATCH] Add dependabot.yml. --- .github/dependabot.yml | 49 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..bd7d641f --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,49 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "3.1.x" # oldest OSS supported branch + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "4.0.x" # oldest OSS supported branch + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "main" + schedule: + interval: "weekly" + - package-ecosystem: maven + directory: / + schedule: + interval: daily + target-branch: 3.1.x + ignore: + # only upgrade patch versions for maintenance branch + - dependency-name: "*" + update-types: + - version-update:semver-major + - version-update:semver-minor + - package-ecosystem: maven + directory: / + schedule: + interval: daily + target-branch: 4.0.x + ignore: + # only upgrade patch versions for maintenance branch + - dependency-name: "*" + update-types: + - version-update:semver-major + - version-update:semver-minor + - 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