Skip to content

Commit

Permalink
Merge pull request #153 from KohlsTechnology/dependabot/github_action…
Browse files Browse the repository at this point in the history
…s/goreleaser/goreleaser-action-6

chore(deps): bump goreleaser/goreleaser-action from 5 to 6
  • Loading branch information
vinny-sabatini authored Aug 9, 2024
2 parents 1c21bed + 8a58911 commit aad0abf
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:
- name: Image Build
run: make image
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
install-only: true
version: v1.20.0
version: "~> v2"
- name: Test GoReleaser
run: make test-release
deploy:
Expand Down Expand Up @@ -85,10 +85,10 @@ jobs:
tags: ${{ steps.prep.outputs.tags }}
platforms: linux/amd64,linux/arm64
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
install-only: true
version: v1.20.0
version: "~> v2"
- name: Run GoReleaser
run: make release
env:
Expand Down
3 changes: 2 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
project_name: blackbox-helloworld-responder
version: 2
env:
- CGO_ENABLED=0
builds:
Expand Down Expand Up @@ -27,4 +28,4 @@ checksum:
snapshot:
name_template: "{{.Tag}}-next"
changelog:
skip: false
disable: true
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test-dirty: vendor build
# Make sure goreleaser is working
.PHONY: test-release
test-release:
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --snapshot --skip-publish --clean
BRANCH=$(BRANCH) COMMIT=$(COMMIT) DATE=$(DATE) VERSION_PKG=$(VERSION_PKG) goreleaser release --snapshot --skip=publish --clean

.PHONY: golangci-lint
golangci-lint:
Expand Down

0 comments on commit aad0abf

Please sign in to comment.