From 65a2f2404b0279bcd8c27c8a9748396825d63527 Mon Sep 17 00:00:00 2001 From: yutachaos <18604471+yutachaos@users.noreply.github.com> Date: Fri, 16 Sep 2022 11:41:29 +0900 Subject: [PATCH 1/2] Update goreleaser version --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 350f02a..2f15f1c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -16,7 +16,7 @@ jobs: with: go-version: 1.16.x - name: run GoReleaser - uses: goreleaser/goreleaser-action@v2 + uses: goreleaser/goreleaser-action@v3 with: distribution: goreleaser version: latest From a75955f22a58ddb6acf74f0a4e8d26d1bc506279 Mon Sep 17 00:00:00 2001 From: yutachaos <18604471+yutachaos@users.noreply.github.com> Date: Fri, 16 Sep 2022 11:45:58 +0900 Subject: [PATCH 2/2] Update go 1.19 --- .github/workflows/release.yaml | 2 +- go.mod | 15 +++++++++++---- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2f15f1c..ae8cc8f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -14,7 +14,7 @@ jobs: - name: setup go uses: actions/setup-go@v1 with: - go-version: 1.16.x + go-version: 1.19.x - name: run GoReleaser uses: goreleaser/goreleaser-action@v3 with: diff --git a/go.mod b/go.mod index ddc9337..995fe5e 100644 --- a/go.mod +++ b/go.mod @@ -3,12 +3,19 @@ module github.com/knqyf263/utern require ( github.com/aws/aws-sdk-go v1.44.88 github.com/briandowns/spinner v1.7.0 - github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect github.com/fatih/color v1.7.0 - github.com/mattn/go-colorable v0.1.4 // indirect - github.com/mattn/go-isatty v0.0.10 // indirect github.com/pkg/errors v0.9.1 github.com/urfave/cli v1.22.1 ) -go 1.16 +require ( + github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect + github.com/jmespath/go-jmespath v0.4.0 // indirect + github.com/mattn/go-colorable v0.1.4 // indirect + github.com/mattn/go-isatty v0.0.10 // indirect + github.com/russross/blackfriday/v2 v2.0.1 // indirect + github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect + golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect +) + +go 1.19