From c234ecdb3059d5a11d47b2f53d91c2e1f49725c0 Mon Sep 17 00:00:00 2001 From: Chris Burns <29541485+ChrisJBurns@users.noreply.github.com> Date: Thu, 4 Jun 2026 15:01:43 +0100 Subject: [PATCH] chore: drop patch version from go directive Use go 1.26 instead of go 1.26.4 in go.mod. The go directive only needs the minor version; CI picks up a concrete patch toolchain automatically. Co-Authored-By: Claude Opus 4.8 (1M context) --- go.mod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go.mod b/go.mod index 8602b74..d0fe804 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/stackloklabs/gofetch -go 1.26.4 +go 1.26 require ( github.com/JohannesKaufmann/html-to-markdown/v2 v2.5.1