From 9923ca333156dbf1cb86f6cefeb56a5824faa928 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 9 Sep 2024 10:34:34 +0500 Subject: [PATCH 1/4] chore: create dependabot.yml Enable dependabot dependency updates --- .github/dependabot.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..abb4b1e6 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,6 @@ +version: 2 +updates: + - package-ecosystem: "go" + directory: "/" + schedule: + interval: "weekly" From aeeea9c497d0a0f0c7a9b393f0eabe1395f733e0 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 9 Sep 2024 10:40:44 +0500 Subject: [PATCH 2/4] include all directories with go.mod --- .github/dependabot.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index abb4b1e6..ca951b73 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,9 @@ version: 2 updates: - package-ecosystem: "go" - directory: "/" + directories: + - "/" + - "/internal/examples" + - "/internal/thirdparty" schedule: interval: "weekly" From 5ec90a5e80e7aa5c2a359a0cdfc6879cb87f81f6 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 9 Sep 2024 10:42:09 +0500 Subject: [PATCH 3/4] fix package ecosystem name --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ca951b73..fd67f4d4 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,6 +1,6 @@ version: 2 updates: - - package-ecosystem: "go" + - package-ecosystem: "gomod" directories: - "/" - "/internal/examples" From 72dd51658bc98fd39629600aa7781164262944d9 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 9 Sep 2024 10:43:48 +0500 Subject: [PATCH 4/4] make formatter happy --- .github/dependabot.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fd67f4d4..c032ff24 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,9 +1,9 @@ version: 2 updates: - - package-ecosystem: "gomod" + - package-ecosystem: 'gomod' directories: - - "/" - - "/internal/examples" - - "/internal/thirdparty" + - '/' + - '/internal/examples' + - '/internal/thirdparty' schedule: - interval: "weekly" + interval: 'weekly'