Skip to content

Commit d71f6d8

Browse files
efiacorCopilot
andauthored
Add dependabot config for GitHub Actions and Go modules (#1062)
* Add dependabot config for GitHub Actions and Go modules Enable automated version updates for: - github-actions: bumps pinned SHA refs with version comments - gomod: Go module dependency updates (mirrors existing UI config) Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech> * Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech> * Add license comments to dependabot.yml Add licensing information and update dependabot configuration. --------- Signed-off-by: Fiachra Corcoran <fiachra.corcoran@est.tech> Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 7820cca commit d71f6d8

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

.github/dependabot.yml

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Copyright 2026 The kpt Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
version: 2
16+
updates:
17+
- package-ecosystem: github-actions
18+
directory: /
19+
schedule:
20+
interval: weekly
21+
commit-message:
22+
prefix: "ci"
23+
- package-ecosystem: gomod
24+
directory: /
25+
schedule:
26+
interval: weekly
27+
commit-message:
28+
prefix: "deps"
29+
- package-ecosystem: gomod
30+
directory: /docs
31+
schedule:
32+
interval: weekly
33+
commit-message:
34+
prefix: "deps"
35+
- package-ecosystem: gomod
36+
directory: /examples/apps/hello-server
37+
schedule:
38+
interval: weekly
39+
commit-message:
40+
prefix: "deps"

0 commit comments

Comments
 (0)