From 3be58442a48bbc740023e9065734c38f612fa8b1 Mon Sep 17 00:00:00 2001 From: Karan Sharma Date: Thu, 18 Feb 2021 19:48:29 +0530 Subject: [PATCH] chore: update go version --- .github/workflows/release.yml | 19 +++++++------------ go.mod | 2 +- 2 files changed, 8 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e984108..28db573 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -3,36 +3,31 @@ name: goreleaser on: push: tags: - - '*' + - "*" jobs: goreleaser: runs-on: ubuntu-latest steps: - - - name: Checkout + - name: Checkout uses: actions/checkout@v2 with: fetch-depth: 0 - - - name: Set up Go + - name: Set up Go uses: actions/setup-go@v2 with: - go-version: 1.15 - - - name: Login to GitHub Container Registry + go-version: 1.16 + - name: Login to GitHub Container Registry uses: docker/login-action@v1 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GH_GORELEASER_TOKEN }} - - - name: Install Snapcraft and Log In + - name: Install Snapcraft and Log In uses: samuelmeuli/action-snapcraft@v1 with: snapcraft_token: ${{ secrets.SNAPCRAFT_TOKEN }} - - - name: Run GoReleaser + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: version: latest diff --git a/go.mod b/go.mod index 902969b..35e7edf 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/mr-karan/doggo -go 1.15 +go 1.16 require ( github.com/fatih/color v1.10.0