From c62c52f92394b7473e7a6a0286928885b56c4dcf Mon Sep 17 00:00:00 2001 From: Andrei Rudchenko Date: Fri, 8 Aug 2025 09:37:39 +0300 Subject: [PATCH 1/3] feat: Added dependabot for Docker and Go --- .github/dependabot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..13af3e181 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,19 @@ +version: 2 +updates: + # Go module in ipip_check + - package-ecosystem: "gomod" + directory: "/kubemarine/resources/scripts/source/ipip_check" + schedule: + interval: "weekly" + + # Main Dockerfile in root + - package-ecosystem: "docker" + directory: "/" + schedule: + interval: "weekly" + + # Dockerfile-transfer in ci directory + - package-ecosystem: "docker" + directory: "/ci" + schedule: + interval: "weekly" From f2acef603b02bbda1671115429e4e2deee2e09e9 Mon Sep 17 00:00:00 2001 From: Andrei Rudchenko Date: Wed, 13 Aug 2025 09:05:46 +0300 Subject: [PATCH 2/3] chore: Updated dependabot with new dependencies --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 13af3e181..72e1d98b2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -17,3 +17,9 @@ updates: directory: "/ci" schedule: interval: "weekly" + + # Python dependencies (requirements files in repo root) + - package-ecosystem: "pip" + directory: "/" + schedule: + interval: "weekly" \ No newline at end of file From 82174496f6292a88b1f427aaa648c2d59b600c0d Mon Sep 17 00:00:00 2001 From: Andrei Rudchenko Date: Wed, 13 Aug 2025 15:43:39 +0300 Subject: [PATCH 3/3] feat: Updated the listing in dependabot --- .github/dependabot.yml | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 72e1d98b2..353a34f9a 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,24 +1,20 @@ version: 2 updates: - # Go module in ipip_check + # Go - package-ecosystem: "gomod" directory: "/kubemarine/resources/scripts/source/ipip_check" schedule: interval: "weekly" - # Main Dockerfile in root + # Dockerfiles - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" - - # Dockerfile-transfer in ci directory - - package-ecosystem: "docker" - directory: "/ci" + directories: + - "/" + - "/ci" schedule: interval: "weekly" - # Python dependencies (requirements files in repo root) + # Python dependencies - package-ecosystem: "pip" directory: "/" schedule: