From 14b99e0e766681c0b40ff1bdffcb337509289671 Mon Sep 17 00:00:00 2001 From: pducolin Date: Thu, 12 Dec 2024 16:50:15 +0100 Subject: [PATCH 1/3] group aws and azure native dependencies --- .github/dependabot.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a295d3dc1..ca74b5a84 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -85,3 +85,16 @@ updates: directory: /components/datadog/apps/cws/images/cws-centos7 schedule: interval: daily + + - package-ecosystem: gomod + directory: / + schedule: + interval: weekly + groups: + aws-sdk-go-v2: + patterns: + - '^github\.com\/aws\/aws-sdk-go-v2' + pulumi-azure-native-sdk: + patterns: + - '^github\.com\/pulumi\/pulumi-azure-native-sdk' + \ No newline at end of file From 8a6da9be4a628d080a26a9747c6953ad3fee4cfa Mon Sep 17 00:00:00 2001 From: pducolin Date: Thu, 12 Dec 2024 17:55:56 +0100 Subject: [PATCH 2/3] [dependabot] use globs patterns --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ca74b5a84..6b165abc7 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -93,8 +93,8 @@ updates: groups: aws-sdk-go-v2: patterns: - - '^github\.com\/aws\/aws-sdk-go-v2' + - 'github.com/aws/aws-sdk-go-v2*' pulumi-azure-native-sdk: patterns: - - '^github\.com\/pulumi\/pulumi-azure-native-sdk' + - 'github.com/pulumi/pulumi-azure-native-sdk*' \ No newline at end of file From b23d85b98e14a98c8ab19394114d9de6e5f49265 Mon Sep 17 00:00:00 2001 From: pducolin Date: Thu, 12 Dec 2024 17:57:59 +0100 Subject: [PATCH 3/3] [dependabot] single definition for root go.mod --- .github/dependabot.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 6b165abc7..16e8e01ac 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -15,6 +15,13 @@ updates: directory: / schedule: interval: daily + groups: + aws-sdk-go-v2: + patterns: + - 'github.com/aws/aws-sdk-go-v2*' + pulumi-azure-native-sdk: + patterns: + - 'github.com/pulumi/pulumi-azure-native-sdk*' - package-ecosystem: pip directory: / @@ -86,15 +93,4 @@ updates: schedule: interval: daily - - package-ecosystem: gomod - directory: / - schedule: - interval: weekly - groups: - aws-sdk-go-v2: - patterns: - - 'github.com/aws/aws-sdk-go-v2*' - pulumi-azure-native-sdk: - patterns: - - 'github.com/pulumi/pulumi-azure-native-sdk*' \ No newline at end of file