From 656ad760f6e44d8eac3b5b6a95fa02805e28dae8 Mon Sep 17 00:00:00 2001
From: Paul Holzinger <pholzing@redhat.com>
Date: Wed, 12 Jul 2023 10:33:32 +0200
Subject: [PATCH] go mod: no longer use 1.18

1.18 is EOL and we should not have to set this since the current
versions should generate compatible go.sum files anyway.

This is an attempt to fix broken renovate PRs which create a different
go.sum and thus do not pass CI checks.

Signed-off-by: Paul Holzinger <pholzing@redhat.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index 9def57299d..03c708b59d 100644
--- a/Makefile
+++ b/Makefile
@@ -308,7 +308,7 @@ build-all-new-commits:
 
 .PHONY: vendor
 vendor:
-	$(GO) mod tidy -compat=1.18
+	$(GO) mod tidy
 	$(GO) mod vendor
 	$(GO) mod verify