From b6a6422fac4773dcf29efe6fa7b84e2765d74bff Mon Sep 17 00:00:00 2001 From: Deluan Date: Mon, 26 Oct 2020 13:04:14 -0400 Subject: [PATCH] Upgrade GoLang to 1.15.3 --- .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 36d57e639..ae9cb5c48 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -115,7 +115,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.15.2-1 + uses: docker://deluan/ci-goreleaser:1.15.3-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -123,7 +123,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.15.2-1 + uses: docker://deluan/ci-goreleaser:1.15.3-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 9d6dde39a..4329f8187 100644 --- a/Makefile +++ b/Makefile @@ -104,5 +104,5 @@ release: .PHONY: release snapshot: - docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.2-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.3-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot