diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index fdd34719d..6e09c1a47 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.16.0-1 + uses: docker://deluan/ci-goreleaser:1.16.2-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.16.0-1 + uses: docker://deluan/ci-goreleaser:1.16.2-1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: diff --git a/Makefile b/Makefile index ac51c37ac..0386ee1e6 100644 --- a/Makefile +++ b/Makefile @@ -123,5 +123,5 @@ release: .PHONY: release snapshot: - docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.16.0-1 goreleaser release --rm-dist --skip-publish --snapshot + docker run -t -v $(PWD):/workspace -w /workspace deluan/ci-goreleaser:1.16.2-1 goreleaser release --rm-dist --skip-publish --snapshot .PHONY: snapshot