Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,18 @@
executionMode: 'branch',
}
},
{
group: null,
matchDatasources: [
'golang-version',
],
separateMinorPatch: true,
postUpgradeTasks: {
commands: [
'make learn-golang-shas',
],
},
},
{
groupName: 'Misc GitHub actions',
matchManagers: [
Expand Down
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,12 @@ learn-tools-shas: | $(NEEDS_CRANE)
@CRANE=$(CRANE) \
./scripts/learn_kind_images.sh

# Learn the shas for the vendored Go version in the go module.
# This must be run whenever the Go version is updated.
.PHONY: learn-golang-shas
learn-golang-shas:
./scripts/learn_tools_shas.sh _bin/tools/go

.PHONY: learn-image-shas
learn-image-shas: | $(NEEDS_CRANE)
@CRANE=$(CRANE) \
Expand All @@ -111,6 +117,7 @@ help: ## Show this help
@echo "make upgrade-base-images"
@echo "make upgrade-kind-images"
@echo
@echo "make learn-golang-shas"
@echo "make learn-tools-shas"
@echo "make learn-image-shas"
@echo
Expand Down
Loading