From 54a3394559b3a14eda5b939dd2ea01841225b446 Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 19 Feb 2021 21:00:38 -0500 Subject: [PATCH] Upgrade to GoLang 1.16.0 --- .github/workflows/pipeline.yml | 4 ++-- Makefile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index f91f9082..e1a6aaf1 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -128,7 +128,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.15.5-1 + uses: docker://deluan/ci-goreleaser:1.16.0-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -136,7 +136,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.15.5-1 + uses: docker://deluan/ci-goreleaser:1.16.0-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 96cc88d4..07f87d58 100644 --- a/Makefile +++ b/Makefile @@ -104,5 +104,5 @@ release: .PHONY: release snapshot: - docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.5-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.16.0-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot