From 48a6ba2956cb33f0b8fd64adafcb5e7648eed74c Mon Sep 17 00:00:00 2001 From: Deluan Date: Fri, 20 Nov 2020 21:55:03 -0500 Subject: [PATCH] Bump GoLang to 1.15.5 --- .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 2b33a84fd..dad0c294a 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -120,7 +120,7 @@ jobs: - name: Run GoReleaser - SNAPSHOT if: startsWith(github.ref, 'refs/tags/') != true - uses: docker://deluan/ci-goreleaser:1.15.3-1 + uses: docker://deluan/ci-goreleaser:1.15.5-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -128,7 +128,7 @@ jobs: - name: Run GoReleaser - RELEASE if: startsWith(github.ref, 'refs/tags/') - uses: docker://deluan/ci-goreleaser:1.15.3-1 + uses: docker://deluan/ci-goreleaser:1.15.5-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index 4329f8187..519384d10 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.3-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -it -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.15.5-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot