From bbadc1a6ba9bb593a9550b00c6cd2d08d6d05c45 Mon Sep 17 00:00:00 2001 From: Sebastian Choren Date: Wed, 19 Apr 2023 18:00:36 -0300 Subject: [PATCH] chore: upgrade goreleaser to v1.17.2 (#2408) --- .github/workflows/deploy-demo.yml | 2 +- .github/workflows/deploy-main.yml | 4 ++-- .github/workflows/pull-request.yaml | 4 ++-- .github/workflows/release-candidate.yml | 2 +- .github/workflows/release-version.yml | 2 +- Makefile | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index 2ae96c4b28..4294586d89 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -79,7 +79,7 @@ jobs: - uses: goreleaser/goreleaser-action@v4 with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: release --clean --skip-announce -f .goreleaser.dev.yaml env: VERSION: ${{ github.ref_name}}-demo diff --git a/.github/workflows/deploy-main.yml b/.github/workflows/deploy-main.yml index 81e12d11df..20eb2c9ddf 100644 --- a/.github/workflows/deploy-main.yml +++ b/.github/workflows/deploy-main.yml @@ -85,7 +85,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: release --clean --split --nightly env: GOOS: ${{ matrix.GOOS }} @@ -145,7 +145,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: continue --merge env: VERSION: sha-${{ env.sha_short }} diff --git a/.github/workflows/pull-request.yaml b/.github/workflows/pull-request.yaml index a3d8fe1b09..91f2456834 100644 --- a/.github/workflows/pull-request.yaml +++ b/.github/workflows/pull-request.yaml @@ -102,7 +102,7 @@ jobs: uses: goreleaser/goreleaser-action@v4 with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: build --single-target --clean --snapshot env: VERSION: pr-${{ github.event.pull_request.number }} @@ -176,7 +176,7 @@ jobs: - uses: goreleaser/goreleaser-action@v4 with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: release --clean --skip-announce --snapshot -f .goreleaser.dev.yaml env: VERSION: pr-${{ github.event.pull_request.number }} diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index a4032828e6..deb1c50533 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -82,7 +82,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: release --clean -f .goreleaser.rc.yaml env: VERSION: ${{ github.ref_name}} diff --git a/.github/workflows/release-version.yml b/.github/workflows/release-version.yml index 29899173e8..eb92f51ce0 100644 --- a/.github/workflows/release-version.yml +++ b/.github/workflows/release-version.yml @@ -93,7 +93,7 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' with: distribution: goreleaser-pro - version: v1.16.2 + version: v1.17.2 args: release --clean env: VERSION: ${{ github.ref_name}} diff --git a/Makefile b/Makefile index ad1ddc941f..a96f2b61dc 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PROJECT_ROOT=${PWD} -GORELEASER_VERSION=1.16.2-pro +GORELEASER_VERSION=1.17.2-pro CURRENT_GORELEASER_VERSION := $(shell goreleaser --version | head -n 1 | cut -d' ' -f3-) goreleaser-version: ifneq "$(CURRENT_GORELEASER_VERSION)" "$(GORELEASER_VERSION)"