From 1bd2abbc09fc6d4a4d9fcdc1666f69245055b96d Mon Sep 17 00:00:00 2001 From: godcong Date: Fri, 15 Nov 2024 19:11:58 +0800 Subject: [PATCH] build: add version retraction to go.mod - Retract versions v0.0.90, v0.0.89, v0.0.88, and v0.0.87 - This change ensures that problematic versions are not used in future builds --- go.mod | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/go.mod b/go.mod index 09a8622..3c13306 100644 --- a/go.mod +++ b/go.mod @@ -31,3 +31,10 @@ require ( gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v3 v3.0.1 // indirect ) + +retract ( + v0.0.90 + v0.0.89 + v0.0.88 + v0.0.87 +)