Skip to content

Commit

Permalink
BOT: run 'make upgrade-klone' and 'make generate'
Browse files Browse the repository at this point in the history
Signed-off-by: jetstack-bot <[email protected]>
  • Loading branch information
jetstack-bot committed Mar 7, 2024
1 parent 0a76c2c commit 2b51422
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 11 deletions.
16 changes: 8 additions & 8 deletions klone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,40 +10,40 @@ targets:
- folder_name: boilerplate
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/boilerplate
- folder_name: cert-manager
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/cert-manager
- folder_name: executable
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/executable
- folder_name: generate-verify
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/generate-verify
- folder_name: help
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/help
- folder_name: klone
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/klone
- folder_name: repository-base
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/repository-base
- folder_name: tools
repo_url: https://github.com/cert-manager/makefile-modules.git
repo_ref: main
repo_hash: 1d93410ce1702a34917b72beb64dad24057b2139
repo_hash: bfb9591e1ef2c8dc23069f6ecc426d71978739c5
repo_path: modules/tools
6 changes: 4 additions & 2 deletions make/_shared/help/help.sh
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,10 @@ IFS=$'\n'; for line in $extracted_lines; do

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

# Print the target and its multiline comment
Expand Down
2 changes: 1 addition & 1 deletion make/_shared/tools/00_mod.mk
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ ADDITIONAL_TOOLS ?=
TOOLS += $(ADDITIONAL_TOOLS)

# https://go.dev/dl/
VENDORED_GO_VERSION := 1.21.7
VENDORED_GO_VERSION := 1.21.8

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

0 comments on commit 2b51422

Please sign in to comment.