From a04158556541420a86354232cfc657eb5a1cc247 Mon Sep 17 00:00:00 2001 From: winds0r Date: Sun, 30 Jul 2023 07:07:40 +0900 Subject: [PATCH] fix(meta): setting golang to 1.19 --- .github/workflows/release.yml | 2 +- go.mod | 2 +- tools/utils.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f105f8e..5875910 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.20 + go-version: 1.19 - name: Checkout uses: actions/checkout@v2 diff --git a/go.mod b/go.mod index e6406f3..6fa13b1 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/cmepw/myph -go 1.20 +go 1.19 require ( github.com/spf13/cobra v1.7.0 diff --git a/tools/utils.go b/tools/utils.go index 896f55a..71683ee 100644 --- a/tools/utils.go +++ b/tools/utils.go @@ -106,7 +106,7 @@ func CreateTmpProjectRoot(path string) error { var go_mod = []byte(` module github.com/cmepw/myph -go 1.20 +go 1.19 `)