From e6259af61d330d4149e76c72d253a1b511e2c9d2 Mon Sep 17 00:00:00 2001 From: Daniele Franceschi Date: Mon, 19 Feb 2024 22:35:24 +0000 Subject: [PATCH] bump goreleaser action --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4cc4109..e799b43 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,16 +25,14 @@ jobs: sudo apt-get update sudo apt-get install -y upx - name: Run GoReleaser (snapshot) - uses: goreleaser/goreleaser-action@v4.6.0 + uses: goreleaser/goreleaser-action@v5 if: github.ref_type != 'tag' with: - version: v1.23.0 args: build --clean --snapshot - name: Run GoReleaser (release) - uses: goreleaser/goreleaser-action@v4.6.0 + uses: goreleaser/goreleaser-action@v5 if: github.ref_type == 'tag' with: - version: v1.23.0 args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}