Skip to content

Commit 168a5de

Browse files
authored
Merge pull request k8snetworkplumbingwg#653 from adrianchiris/add-gh-actions-to-dependabot
chore: add github-actions to dependabot
2 parents 1d67737 + 64ba349 commit 168a5de

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

.github/dependabot.yaml

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,37 @@
11
version: 2
22
updates:
3+
# Docker images
34
- package-ecosystem: docker
45
directory: /images
56
schedule:
67
interval: weekly
8+
day: monday
9+
commit-message:
10+
prefix: "chore:"
11+
12+
# GitHub Actions
13+
- package-ecosystem: github-actions
14+
directory: /
15+
schedule:
16+
interval: weekly
17+
day: monday
18+
commit-message:
19+
prefix: "chore:"
20+
21+
# Go modules
722
- package-ecosystem: gomod
823
directory: /
924
schedule:
1025
interval: weekly
26+
day: monday
27+
commit-message:
28+
prefix: "chore:"
1129
groups:
30+
kubernetes-dependencies:
31+
patterns:
32+
- k8s.io/*
1233
gomod-dependencies:
1334
patterns:
14-
- '*'
35+
- '*'
36+
exclude-patterns:
37+
- k8s.io/*

.github/workflows/build-test-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: build
66
runs-on: ubuntu-24.04
77
steps:
8-
- name: Set up Go matrix
8+
- name: Set up Go
99
uses: actions/setup-go@v3
1010
with:
1111
go-version: 1.23.x

0 commit comments

Comments
 (0)