Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CI] Merge self-upgrade-main into main #98

Merged
merged 1 commit into from
Aug 7, 2024
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
18 changes: 9 additions & 9 deletions klone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,45 @@ targets:
- folder_name: boilerplate
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/boilerplate
- folder_name: cert-manager
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/cert-manager
- folder_name: executable
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/executable
- folder_name: generate-verify
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/generate-verify
- folder_name: go
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/go
- folder_name: help
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/help
- folder_name: klone
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/klone
- folder_name: repository-base
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
repo_path: modules/repository-base
- folder_name: tools
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 6d1bb94781eb541436dbcd7c476c20bbfa6f5ede
repo_hash: 117727166c978e22bc0f4bb887fb7163169442e2
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 @@ -159,7 +159,7 @@ ADDITIONAL_TOOLS ?=
tools += $(ADDITIONAL_TOOLS)

# https://go.dev/dl/
VENDORED_GO_VERSION := 1.22.5
VENDORED_GO_VERSION := 1.22.6

# Print the go version which can be used in GH actions
.PHONY: print-go-version
Expand Down Expand Up @@ -374,10 +374,10 @@ $(call for_each_kv,go_dependency,$(go_dependencies))
# File downloads #
##################

go_linux_amd64_SHA256SUM=904b924d435eaea086515bc63235b192ea441bd8c9b198c507e85009e6e4c7f0
go_linux_arm64_SHA256SUM=8d21325bfcf431be3660527c1a39d3d9ad71535fabdf5041c826e44e31642b5a
go_darwin_amd64_SHA256SUM=95d9933cdcf45f211243c42c7705c37353cccd99f27eb4d8e2d1bf2f4165cb50
go_darwin_arm64_SHA256SUM=4cd1bcb05be03cecb77bccd765785d5ff69d79adf4dd49790471d00c06b41133
go_linux_amd64_SHA256SUM=999805bed7d9039ec3da1a53bfbcafc13e367da52aa823cb60b68ba22d44c616
go_linux_arm64_SHA256SUM=c15fa895341b8eaf7f219fada25c36a610eb042985dc1a912410c1c90098eaf2
go_darwin_amd64_SHA256SUM=9c3c0124b01b5365f73a1489649f78f971ecf84844ad9ca58fde133096ddb61b
go_darwin_arm64_SHA256SUM=ebac39fd44fc22feed1bb519af431c84c55776e39b30f4fd62930da9c0cfd1e3

.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