Skip to content

Commit 2b51422

Browse files
committed
BOT: run 'make upgrade-klone' and 'make generate'
Signed-off-by: jetstack-bot <[email protected]>
1 parent 0a76c2c commit 2b51422

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

klone.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,40 +10,40 @@ targets:
1010
- folder_name: boilerplate
1111
repo_url: https://github.com/cert-manager/makefile-modules.git
1212
repo_ref: main
13-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
13+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
1414
repo_path: modules/boilerplate
1515
- folder_name: cert-manager
1616
repo_url: https://github.com/cert-manager/makefile-modules.git
1717
repo_ref: main
18-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
18+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
1919
repo_path: modules/cert-manager
2020
- folder_name: executable
2121
repo_url: https://github.com/cert-manager/makefile-modules.git
2222
repo_ref: main
23-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
23+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
2424
repo_path: modules/executable
2525
- folder_name: generate-verify
2626
repo_url: https://github.com/cert-manager/makefile-modules.git
2727
repo_ref: main
28-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
28+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
2929
repo_path: modules/generate-verify
3030
- folder_name: help
3131
repo_url: https://github.com/cert-manager/makefile-modules.git
3232
repo_ref: main
33-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
33+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
3434
repo_path: modules/help
3535
- folder_name: klone
3636
repo_url: https://github.com/cert-manager/makefile-modules.git
3737
repo_ref: main
38-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
38+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
3939
repo_path: modules/klone
4040
- folder_name: repository-base
4141
repo_url: https://github.com/cert-manager/makefile-modules.git
4242
repo_ref: main
43-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
43+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
4444
repo_path: modules/repository-base
4545
- folder_name: tools
4646
repo_url: https://github.com/cert-manager/makefile-modules.git
4747
repo_ref: main
48-
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
48+
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
4949
repo_path: modules/tools

make/_shared/help/help.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ IFS=$'\n'; for line in $extracted_lines; do
9393

9494
# replace any $(...) with the actual value
9595
if [[ $target =~ \$\((.*)\) ]]; then
96-
target=$(echo -e "$extracted_expansions" | grep "<start-target>${BASH_REMATCH[1]}<end-target>")
97-
target=$([[ $target =~ \<start-expansion\>(.*)\<end-expansion\> ]] && echo -e "${BASH_REMATCH[1]}")
96+
new_target=$(echo -e "$extracted_expansions" | grep "<start-target>${BASH_REMATCH[1]}<end-target>" || true)
97+
if [[ -n "$new_target" ]]; then
98+
target=$([[ $new_target =~ \<start-expansion\>(.*)\<end-expansion\> ]] && echo -e "${BASH_REMATCH[1]}")
99+
fi
98100
fi
99101

100102
# Print the target and its multiline comment

make/_shared/tools/00_mod.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ ADDITIONAL_TOOLS ?=
132132
TOOLS += $(ADDITIONAL_TOOLS)
133133

134134
# https://go.dev/dl/
135-
VENDORED_GO_VERSION := 1.21.7
135+
VENDORED_GO_VERSION := 1.21.8
136136

137137
# Print the go version which can be used in GH actions
138138
.PHONY: print-go-version

0 commit comments

Comments
 (0)