From 3a9ad2dbc1c121c6c48b44c9421223d54fe743f2 Mon Sep 17 00:00:00 2001 From: adamus1red Date: Tue, 6 May 2025 21:25:49 +0100 Subject: [PATCH] Create Dependabot config Add gomod and github actions dependencies to be automatically updated via PR --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..60cae0c --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,13 @@ +version: 2 +updates: + # Enable version updates for Go + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + + # Enable version updates for Github Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly"