From d469e9d5af4c7800b5235f91782504cf4ee82c52 Mon Sep 17 00:00:00 2001 From: web3-bot Date: Fri, 6 Sep 2024 20:32:43 +0100 Subject: [PATCH] ci: uci/update-go (#97) * chore: bump go.mod to Go 1.22 and run go fix * chore: update stringer --------- Co-authored-by: Steven Allen --- code.go | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code.go b/code.go index 6fc8ecc..91fa11f 100644 --- a/code.go +++ b/code.go @@ -9,7 +9,7 @@ import ( //go:generate go run gen.go //go:generate gofmt -w code_table.go -//go:generate go run golang.org/x/tools/cmd/stringer@v0.5.0 -type=Code -linecomment +//go:generate go run golang.org/x/tools/cmd/stringer@v0.24.0 -type=Code -linecomment // Code describes an integer reserved in the multicodec table, defined at // github.com/multiformats/multicodec. diff --git a/go.mod b/go.mod index 6efe910..540709d 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/multiformats/go-multicodec -go 1.21 +go 1.22