Skip to content

Commit

Permalink
Dependabot: fix cloud providers' SDK dependencies (#40125)
Browse files Browse the repository at this point in the history
* Fix cloud providers' SDK dependencies

After visiting https://github.com/elastic/beats/network/updates, I
noted the following message:

> Update configs must have a unique combination of 'package-ecosystem', 'directory', and 'target-branch'

In our use case, the two `package-ecosystem: gomod` definitions have
the same values:

  package-ecosystem: gomod
  directory: /
  target-branch: <default value>

So, I guess we must use only one definition.

* Update .github/dependabot.yml

Co-authored-by: Dimitrios Liappis <[email protected]>

---------

Co-authored-by: Dimitrios Liappis <[email protected]>
  • Loading branch information
zmoog and dliappis authored Jul 8, 2024
1 parent e40a406 commit e59a23e
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,8 @@ updates:
- dependency-name: github.com/elastic/go-seccomp-bpf
- dependency-name: github.com/elastic/toutoumomoma
- dependency-name: github.com/elastic/ebpfevents
ignore:
# Skip github.com/elastic/mito because it requires documentation updates.
- dependency-name: github.com/elastic/mito
open-pull-requests-limit: 2

# Cloud providers' SDK dependencies
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
labels:
- automation
- dependabot
reviewers:
- "elastic/obs-ds-hosted-services"
- "elastic/obs-infraobs-integrations"
groups:
# Cloud providers' SDK dependencies
azure-sdks:
patterns:
- "github.com/Azure/azure-sdk-for-go/*"
Expand All @@ -62,6 +47,10 @@ updates:
patterns:
- "cloud.google.com/go/*"
- "google.golang.org/*"
ignore:
# Skip github.com/elastic/mito because it requires documentation updates.
- dependency-name: github.com/elastic/mito
open-pull-requests-limit: 2

# GitHub actions
- package-ecosystem: "github-actions"
Expand Down

0 comments on commit e59a23e

Please sign in to comment.