Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit 2dd1d4c

Browse files
authored
Merge pull request #235 from detiber/dependabot
🏃 Add dependabot config and update go version for testing to v1.15
2 parents 495cbcb + b305beb commit 2dd1d4c

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed

.github/dependabot.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions.
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "daily"
8+
9+
# Maintain dependencies for Go modules.
10+
- package-ecosystem: "gomod"
11+
directory: "/"
12+
schedule:
13+
interval: "daily"
14+
15+
# Maintain dependencies for Docker images.
16+
- package-ecosystem: "docker"
17+
directory: "/"
18+
schedule:
19+
interval: "daily"

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v2
2727
- uses: actions/setup-go@v2
2828
with:
29-
go-version: '1.14.2' # The Go version to download (if necessary) and use.
29+
go-version: '1.15' # The Go version to download (if necessary) and use.
3030
- name: kubebuilder
3131
run: make kubebuilder KUBEBUILDER_DIR=${KUBEBUILDER_DIR} # we use this dir because /usr/local/kubebuilder is protected
3232
- name: test

0 commit comments

Comments
 (0)