From b4094bd032d915c54253134cdcea622513c39657 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jun 2024 12:43:41 +0000 Subject: [PATCH] Bump goreleaser/goreleaser-action from 5 to 6 Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 5 to 6. - [Release notes](https://github.com/goreleaser/goreleaser-action/releases) - [Commits](https://github.com/goreleaser/goreleaser-action/compare/v5...v6) --- updated-dependencies: - dependency-name: goreleaser/goreleaser-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/golang.yml | 2 +- .goreleaser.yml | 1 + Makefile | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml index 1ca74d0..8235cea 100644 --- a/.github/workflows/golang.yml +++ b/.github/workflows/golang.yml @@ -107,7 +107,7 @@ jobs: run: make container-builder - name: Release ${{ (!startsWith(github.ref, 'refs/tags/') && 'snapshot') || '' }} - uses: goreleaser/goreleaser-action@v5 + uses: goreleaser/goreleaser-action@v6 with: version: latest args: release --clean ${{ (!startsWith(github.ref, 'refs/tags/') && '--snapshot') || '' }} diff --git a/.goreleaser.yml b/.goreleaser.yml index 9c11dd1..799c50c 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,3 +1,4 @@ +version: 2 project_name: spiffe-vault before: diff --git a/Makefile b/Makefile index 8f4699e..fccc4d5 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ $(GO_PATH)/bin/golint: go install golang.org/x/lint/golint@latest $(GO_PATH)/bin/goreleaser: - go install github.com/goreleaser/goreleaser@latest + go install github.com/goreleaser/goreleaser/v2@latest .PHONY: lint lint: $(GO_PATH)/bin/goimports $(GO_PATH)/bin/golint ## runs linting