From 3cd8f010bb6698db3875eb9fc98e5b82dcc7e820 Mon Sep 17 00:00:00 2001 From: catatsuy Date: Sun, 28 Apr 2024 09:21:24 +0900 Subject: [PATCH] Update go version to 1.22.2 and add go-cmp dependency --- go.mod | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index 6511314..9618593 100644 --- a/go.mod +++ b/go.mod @@ -1,13 +1,11 @@ module github.com/catatsuy/notify_slack -go 1.19 +go 1.22.2 require ( + github.com/google/go-cmp v0.6.0 github.com/pelletier/go-toml/v2 v2.2.1 golang.org/x/term v0.19.0 ) -require ( - github.com/google/go-cmp v0.6.0 // indirect - golang.org/x/sys v0.19.0 // indirect -) +require golang.org/x/sys v0.19.0 // indirect