From a8f14d52844a532c4b831636d136cdc5b88b9fe1 Mon Sep 17 00:00:00 2001 From: Haitao Chen Date: Sun, 23 Jun 2024 23:14:26 -0700 Subject: [PATCH] update dependabot to weekly and group PRs (#92) * Update dependabot.yml * update dependabot * tweaks dependency-type --- .github/dependabot.yml | 18 +++++++++++++++--- graph/go.mod | 2 +- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ad50e6a..b962019 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,14 +8,26 @@ updates: - package-ecosystem: "gomod" # See documentation for possible values directory: "/" # Location of package manifests schedule: - interval: "daily" + interval: "weekly" + groups: + gomod: + applies-to: version-updates + dependency-type: production - package-ecosystem: github-actions directory: / schedule: - interval: daily + interval: weekly + groups: + github-actions: + applies-to: version-updates + dependency-type: production - package-ecosystem: gomod directory: /graph schedule: - interval: daily + interval: weekly + groups: + gomod: + applies-to: version-updates + dependency-type: production diff --git a/graph/go.mod b/graph/go.mod index 42b5f09..85ad3fd 100644 --- a/graph/go.mod +++ b/graph/go.mod @@ -1,6 +1,6 @@ module github.com/Azure/go-asyncjob/graph -go 1.19 +go 1.21 require github.com/stretchr/testify v1.9.0