From d9e6017ddbda6b67890bd1cc8d33593d29940821 Mon Sep 17 00:00:00 2001 From: Maurizio Branca Date: Mon, 5 Aug 2024 16:01:49 +0200 Subject: [PATCH] Manage AWS SDK(s) version with Dependabot (#39738) Set up Dependabot to manage the AWS SDK version. With the current reactive and manual process, our dependencies are often outdated. To release a bugfix to a dependency, we need to wait for the following stack release instead of merging it shortly after it's available from AWS. See https://github.com/elastic/beats/issues/39492 to learn more. --- .github/dependabot.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4fb19af2548b..2b2bc132b1c3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -36,6 +36,10 @@ updates: - dependency-name: github.com/elastic/toutoumomoma - dependency-name: github.com/elastic/ebpfevents # Team:Team:obs-ds-hosted-services, Team:obs-infraobs-integrations + # AWS SDK dependencies + - dependency-name: github.com/aws/aws-sdk-go-v2/* + - dependency-name: github.com/aws/aws-lambda-go/* + - dependency-name: github.com/aws/smithy-go/* # Azure SDK dependencies - dependency-name: github.com/Azure/azure-sdk-for-go/* - dependency-name: github.com/Azure/azure-event-hubs-go/* @@ -45,6 +49,9 @@ updates: - dependency-name: cloud.google.com/go/* groups: # Cloud providers' SDK dependencies + aws-sdks: + patterns: + - "github.com/aws/aws-sdk-go-v2/*" azure-sdks: patterns: - "github.com/Azure/azure-*-go"