From 26430e3679d28a0ba77f4f93e583d16d3e465c62 Mon Sep 17 00:00:00 2001 From: Manuel Kraus Date: Tue, 27 Sep 2022 22:23:10 +0200 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=20chore:=20bump=20go=20to=201.19?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 2 +- go.mod | 2 +- main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e3d915..5f1a4ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go ${{ matrix.node-version }} uses: actions/setup-go@v2 with: - go-version: 1.17.x + go-version: 1.19.x - name: Cache Go modules uses: actions/cache@v2 diff --git a/go.mod b/go.mod index 8f91308..a3d3787 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/techtheoryio/aws-profile-picker -go 1.17 +go 1.19 require ( github.com/lithammer/fuzzysearch v1.1.3 diff --git a/main.go b/main.go index e91e51d..04cba2a 100644 --- a/main.go +++ b/main.go @@ -8,7 +8,7 @@ import ( "github.com/manifoldco/promptui" ) -var version string = "v1.0.6" +var version string = "v1.0.7" func main() { profiles, err := parseProfiles()