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

Commit 0404e0f

Browse files
authored
Merge pull request #408 from cprivitere/update-gomega-to-1.20.2
🐛 Fix dependabot PRs so gomod updates pass tests
2 parents b2f710b + 682a065 commit 0404e0f

File tree

2 files changed

+15
-24
lines changed

2 files changed

+15
-24
lines changed

.github/dependabot.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,29 @@ updates:
55
directory: "/"
66
schedule:
77
interval: "daily"
8+
commit-message:
9+
prefix: ":seedling:"
810

911
# Maintain dependencies for Go modules.
1012
- package-ecosystem: "gomod"
1113
directory: "/"
1214
schedule:
1315
interval: "daily"
14-
16+
commit-message:
17+
prefix: ":seedling:"
18+
19+
# Maintain e2e test Go modules
20+
- package-ecosystem: "gomod"
21+
directory: "/test/e2e"
22+
schedule:
23+
interval: "daily"
24+
commit-message:
25+
prefix: ":seedling:"
26+
1527
# Maintain dependencies for Docker images.
1628
- package-ecosystem: "docker"
1729
directory: "/"
1830
schedule:
1931
interval: "daily"
32+
commit-message:
33+
prefix: ":seedling:"

Makefile

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,6 @@ GINKGO_VER := v1.16.5
8888
GINKGO_BIN := ginkgo
8989
GINKGO := $(TOOLS_BIN_DIR)/$(GINKGO_BIN)-$(GINKGO_VER)
9090

91-
# Sync to version that matches k8s.io/* verisons in https://github.com/kubernetes-sigs/cluster-api/blob/v{VERSION}/go.mod
92-
#KUBECTL_VER := v1.21.2
93-
#KUBECTL_BIN := kubectl
94-
#KUBECTL := $(TOOLS_BIN_DIR)/$(KUBECTL_BIN)-$(KUBECTL_VER)
95-
96-
#KIND_VER := v0.11.1
97-
#KIND_BIN := kind
98-
#KIND := $(TOOLS_BIN_DIR)/$(KIND_BIN)-$(KIND_VER)
99-
10091
TIMEOUT := $(shell command -v timeout || command -v gtimeout)
10192

10293
# Define Docker related variables. Releases should modify and double check these vars.
@@ -245,20 +236,6 @@ $(CONVERSION_GEN): ## Build conversion-gen.
245236
$(GINKGO): ## Build ginkgo.
246237
GOBIN=$(TOOLS_BIN_DIR) $(GO_INSTALL) github.com/onsi/ginkgo/ginkgo $(GINKGO_BIN) $(GINKGO_VER)
247238

248-
#$(KUBECTL): ## Build kubectl
249-
# mkdir -p $(TOOLS_BIN_DIR)
250-
# rm -f "$(KUBECTL)*"
251-
# curl --retry $(CURL_RETRIES) -fsL https://dl.k8s.io/release/$(KUBECTL_VER)/bin/$(GOOS)/$(GOARCH)/kubectl -o $(KUBECTL)
252-
# ln -sf "$(KUBECTL)" "$(TOOLS_BIN_DIR)/$(KUBECTL_BIN)"
253-
# chmod +x "$(TOOLS_BIN_DIR)/$(KUBECTL_BIN)" "$(KUBECTL)"
254-
255-
#$(KIND): ## Build kind
256-
# mkdir -p $(TOOLS_BIN_DIR)
257-
# rm -f "$(KIND)*"
258-
# curl --retry $(CURL_RETRIES) -fsL https://github.com/kubernetes-sigs/kind/releases/download/${KIND_VER}/kind-${GOOS}-${GOARCH} -o ${KIND}
259-
# ln -sf "$(KIND)" "$(TOOLS_BIN_DIR)/$(KIND_BIN)"
260-
# chmod +x "$(TOOLS_BIN_DIR)/$(KIND_BIN)" "$(KIND)"
261-
262239
## --------------------------------------
263240
## Linting
264241
## --------------------------------------

0 commit comments

Comments
 (0)