From b1ebdf4087367454306ccb62753126671c648057 Mon Sep 17 00:00:00 2001 From: Daniela Pavlenco Date: Mon, 13 Jul 2026 17:28:47 +0300 Subject: [PATCH] Add Dependabot configuration --- .github/dependabot.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..5bd453b9d --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,40 @@ +# Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved. +# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl/. + +# This configuration enables Dependabot version updates. +# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates + +version: 2 +updates: +- package-ecosystem: pip + directory: / + schedule: + interval: weekly + commit-message: + prefix: chore + prefix-development: chore + include: scope + open-pull-requests-limit: 5 + target-branch: main + +- package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + commit-message: + prefix: chore + prefix-development: chore + include: scope + open-pull-requests-limit: 5 + target-branch: main + +- package-ecosystem: docker + directory: / + schedule: + interval: weekly + commit-message: + prefix: chore + prefix-development: chore + include: scope + open-pull-requests-limit: 5 + target-branch: main \ No newline at end of file