From c56cf37a659324435441841e52ed04ea3e50f2a3 Mon Sep 17 00:00:00 2001 From: Alexander Peters Date: Sat, 30 Nov 2024 22:08:07 +0100 Subject: [PATCH] Add initial dependabot config (#317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Add Dependabot Nice support bot that helps keeping dependencies up to date and act fast on security patches. To test the config, I did a [run on my fork](https://github.com/alpe/lingo/actions/workflows/dependabot/dependabot-updates). More about the config in the [Dependabot doc](https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file) ❗ Note: Merging the config does not enable the bot. Visit the project "Settings>> Code security" and enable all `Dependabot` features. --- .github/dependabot.yaml | 53 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 00000000..2279c279 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,53 @@ +version: 2 +updates: + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: daily + time: "01:00" + groups: + actions-all: + patterns: + - "*" + + - package-ecosystem: "pip" + directory: "/docs" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "docker" + directory: "/components/model-loader" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "docker" + directory: "/examples/ollama-builtin" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "gomod" + directory: "/examples/private-deep-chat" + schedule: + interval: daily + time: "01:00" + + - package-ecosystem: "docker" + directory: "/examples/private-deep-chat" + schedule: + interval: daily + time: "01:00"