From 8f9ada69a263b7ec934c7be924f4c40dd8f6751f Mon Sep 17 00:00:00 2001 From: Neil Cook Date: Tue, 2 Dec 2025 14:21:08 +0000 Subject: [PATCH 1/3] Create dependabot.yml --- .github/dependabot.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..cd88554 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +# To get started with Dependabot version updates, you'll need to specify which +# package ecosystems to update and where the package manifests are located. +# Please see the documentation for all configuration options: +# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file + +version: 2 +updates: + - package-ecosystem: "gomod" # See documentation for possible values + directory: "/" # Location of package manifests + schedule: + interval: "weekly" From 0a257d5edcc1b2c9b3431f5049f38e553f453f33 Mon Sep 17 00:00:00 2001 From: Neil Cook Date: Thu, 11 Dec 2025 10:25:06 +0000 Subject: [PATCH 2/3] Add docker and github-actions to dependabot config and cleanup comments --- .github/dependabot.yml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index cd88554..febbb48 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,27 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: # https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file version: 2 updates: - - package-ecosystem: "gomod" # See documentation for possible values + - package-ecosystem: "gomod" directory: "/" # Location of package manifests schedule: interval: "weekly" + day: "sunday" + time: "16:00" + - package-ecosystem: "docker" + directories: + - "/" + schedule: + interval: "weekly" + day: "sunday" + time: "16:00" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + time: "16:00" + groups: + all-actions: + patterns: [ "*" ] \ No newline at end of file From 7c966fd521a9f0691f7e954d303b39f01adc0ac8 Mon Sep 17 00:00:00 2001 From: Neil Cook Date: Thu, 11 Dec 2025 10:46:26 +0000 Subject: [PATCH 3/3] Add newline at end of dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index febbb48..d2a9956 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -24,4 +24,4 @@ updates: time: "16:00" groups: all-actions: - patterns: [ "*" ] \ No newline at end of file + patterns: [ "*" ]