Skip to content

Commit 8b7bb22

Browse files
committed
require go 1.23.0 on Makefile
1 parent bda2f8a commit 8b7bb22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ mod-tidy: ## Check go.mod tidiness
7070
set -e ; \
7171
for dir in $(ALL_GO_MOD_DIRS); do \
7272
echo ">>> Running 'go mod tidy' for module: $${dir}"; \
73-
(cd "$${dir}" && go mod tidy -go=1.23 -compat=1.23); \
73+
(cd "$${dir}" && go mod tidy -go=1.23.0 -compat=1.23.0); \
7474
done; \
7575
git diff --exit-code;
7676
.PHONY: mod-tidy

0 commit comments

Comments
 (0)