From db4e8c66923311ac2ee7350b139ac221b9fc57c4 Mon Sep 17 00:00:00 2001 From: Thomas Carmet <8408330+tcarmet@users.noreply.github.com> Date: Tue, 16 Jul 2024 10:47:33 -0700 Subject: [PATCH] Update and review of dependabot config (#643) * re-configure dependabot groups for pip * Add support for devcontainers --- .github/dependabot.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index 4f0acf05..deb9db50 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -7,6 +7,17 @@ registries: username: ${{ secrets.DOCKERHUB_LOGIN }} password: ${{ secrets.DOCKERHUB_PASSWORD }} updates: + - package-ecosystem: devcontainers + directory: / + schedule: + interval: weekly + groups: + devcontainers: + patterns: + - "*" + update-types: + - patch + - minor - package-ecosystem: github-actions directory: / schedule: @@ -37,3 +48,11 @@ updates: directory: / schedule: interval: weekly + groups: + python: + exclude-patterns: + - pydantic + - githubkit + update-types: + - patch + - minor