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
22 changes: 11 additions & 11 deletions klone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,55 +9,55 @@ targets:
- folder_name: boilerplate
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/boilerplate
- folder_name: cert-manager
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/cert-manager
- folder_name: controller-gen
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/controller-gen
- folder_name: generate-verify
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/generate-verify
- folder_name: go
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/go
- folder_name: help
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/help
- folder_name: kind
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/kind
- folder_name: klone
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/klone
- folder_name: oci-build
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/oci-build
- folder_name: repository-base
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/repository-base
- folder_name: tools
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: e18d9428ab2150e0f654f1ef4a5e77b757d33566
repo_hash: 2f12511eced264a0bf9f3a7a51d5e05f192a93b2
repo_path: modules/tools
10 changes: 5 additions & 5 deletions make/_shared/tools/00_mod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export GOVENDOR_DIR ?= $(default_shared_dir)/go_vendor

# https://go.dev/dl/
# renovate: datasource=golang-version packageName=go
VENDORED_GO_VERSION := 1.26.4
VENDORED_GO_VERSION := 1.26.5

$(bin_dir)/tools $(DOWNLOAD_DIR)/tools:
@mkdir -p $@
Expand Down Expand Up @@ -475,10 +475,10 @@ $(call for_each_kv,go_dependency,$(go_dependencies))
# File downloads #
##################

go_linux_amd64_SHA256SUM=1153d3d50e0ac764b447adfe05c2bcf08e889d42a02e0fe0259bd47f6733ad7f
go_linux_arm64_SHA256SUM=ef758ae7c6cf9267c9c0ef080b8965f453d89ab2d25d9eb22de4405925238768
go_darwin_amd64_SHA256SUM=05dc9b5f9997744520aaebb3d5deaa7c755371aebbfb7f97c2511a9f3367538d
go_darwin_arm64_SHA256SUM=b62ad2b6d7d2464f12a5bcad7ff47f19d08325773b5efd21610e445a05a9bf53
go_linux_amd64_SHA256SUM=5c2c3b16caefa1d968a94c1daca04a7ca301a496d9b086e17ad77bb81393f053
go_linux_arm64_SHA256SUM=fe4789e92b1f33358680864bbe8704289e7bb5fc207d80623c308935bd696d49
go_darwin_amd64_SHA256SUM=6231d8d3b8f5552ec6cbf6d685bdd5482e1e703214b120e89b3bf0d7bf1ef725
go_darwin_arm64_SHA256SUM=efb87ff28af9a188d0536ef5d42e63dd52ba8263cd7344a993cc48dd11dedb6a

.PRECIOUS: $(DOWNLOAD_DIR)/tools/go@$(VENDORED_GO_VERSION)_$(HOST_OS)_$(HOST_ARCH).tar.gz
$(DOWNLOAD_DIR)/tools/go@$(VENDORED_GO_VERSION)_$(HOST_OS)_$(HOST_ARCH).tar.gz: | $(DOWNLOAD_DIR)/tools
Expand Down