...
1#
2# Copyright 2021 The Sigstore Authors.
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15
16# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
17version: 2
18updates:
19 - package-ecosystem: "gomod"
20 directory: "/" # Location of package manifests
21 schedule:
22 interval: "weekly"
23 groups:
24 all:
25 update-types:
26 - "patch"
27 - package-ecosystem: "gomod"
28 directory: "hack/tools"
29 schedule:
30 interval: "weekly"
31 groups:
32 all:
33 update-types:
34 - "minor"
35 - "patch"
36 - package-ecosystem: "github-actions"
37 directory: "/"
38 schedule:
39 interval: "weekly"
40 groups:
41 all:
42 update-types:
43 - "minor"
44 - "patch"
45 - package-ecosystem: "docker"
46 directory: "/"
47 schedule:
48 interval: "weekly"
49 groups:
50 all:
51 update-types:
52 - "minor"
53 - "patch"
View as plain text