From d97daa87b20fbc8bfcfbb2d7013bb939bd5cc634 Mon Sep 17 00:00:00 2001 From: Bryant Biggs Date: Fri, 13 Dec 2024 09:02:37 -0600 Subject: [PATCH] chore: Add dependabot configuration to automatically check for package updates weekly --- .github/dependabot.yaml | 59 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/dependabot.yaml diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 000000000..1367076d7 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,59 @@ +# Copyright 2024 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the 'License'); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an 'AS IS' BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +version: 2 +enable-beta-ecosystems: true +updates: + - package-ecosystem: gomod + directories: + - '**/*' + allow: + - dependency-type: 'all' + schedule: + interval: weekly + day: 'monday' + time: '06:00' + timezone: 'US/Pacific' + groups: + aws-dependencies: + patterns: + - 'github.com/aws/*' + k8s-dependencies: + patterns: + - 'k8s.io*' + - 'sigs.k8s.io*' + misc-dependencies: + patterns: + - '*' + exclude-patterns: + - 'github.com/aws/*' + - 'k8s.io*' + - 'sigs.k8s.io*' + labels: + - 'area/dependency' + - 'ok-to-test' + - package-ecosystem: 'github-actions' + directory: '/' + schedule: + interval: weekly + day: 'monday' + time: '06:00' + timezone: 'US/Pacific' + groups: + actions: + patterns: + - '*' + labels: + - 'area/dependency' + - 'ok-to-test'