From 5e14233aac8c2e54c0b159a426f269fd9da9aaec Mon Sep 17 00:00:00 2001 From: Ryan Baxter Date: Thu, 20 Feb 2025 09:24:46 -0500 Subject: [PATCH] Adding dependabot --- .github/dependabot.yaml | 82 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..c353c3f --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,82 @@ +# 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: "github-actions" + directory: "/" + target-branch: "2024.0.x" + schedule: + interval: "weekly" + - package-ecosystem: "github-actions" + directory: "/" + target-branch: "2023.0.x" + schedule: + interval: "weekly" + - package-ecosystem: maven + directory: / + schedule: + interval: daily + ignore: + # JRuby updates are causing docs generation to fail + - dependency-name: "org.jruby:jruby-complete" + - 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: 2024.0.x + ignore: + # only upgrade by minor or patch + - dependency-name: "*" + update-types: + - version-update:semver-major + - version-update:semver-minor + - package-ecosystem: maven + directory: / + schedule: + interval: daily + target-branch: 2023.0.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: 2024.0.x + directory: /docs + schedule: + interval: weekly + - package-ecosystem: npm + target-branch: 2023.0.x + directory: /docs + schedule: + interval: weekly