From 649c8c2ebda103ce87030cad7d80632a3ab81f90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Drzewiecki?= Date: Thu, 21 Nov 2024 08:22:02 +0100 Subject: [PATCH 1/2] configures dependabot for runtime-migrator app --- .github/dependabot.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e0871f93..04c16c62 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,8 @@ updates: directory: "/" # Location of package manifests schedule: interval: "weekly" + + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/hack/runtime-migrator" # Location of package manifests + schedule: + interval: "weekly" From 6cd5280f9a588ecdbd6154419f041941e760e91d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Drzewiecki?= Date: Thu, 21 Nov 2024 08:30:31 +0100 Subject: [PATCH 2/2] switches from duplicated configuration blocks to `directories` --- .github/dependabot.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 04c16c62..9e8f76a7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,11 +6,8 @@ version: 2 updates: - package-ecosystem: "gomod" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "weekly" - - - package-ecosystem: "gomod" # See documentation for possible values - directory: "/hack/runtime-migrator" # Location of package manifests + directories: + - "/" # Location of package manifests + - "/hack/runtime-migrator" schedule: interval: "weekly"