Skip to content

Commit c29c733

Browse files
authoredJun 18, 2024
Update goreleaser to v2 (#197)
Signed-off-by: Prudhvi Godithi <pgodithi@amazon.com>
1 parent 96ce4bf commit c29c733

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed
 

‎.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ jobs:
116116
- name: Setup Go
117117
uses: actions/setup-go@v5
118118
with:
119-
go-version: 1.18.x
119+
go-version: 1.22.1
120120
- name: Import GPG key
121121
id: import_gpg
122-
uses: crazy-max/ghaction-import-gpg@v5
122+
uses: crazy-max/ghaction-import-gpg@v6
123123
with:
124124
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
125125
passphrase: ${{ secrets.GPG_PASSPHRASE }}
126126
- name: Run GoReleaser
127-
uses: goreleaser/goreleaser-action@v2.1.1
127+
uses: goreleaser/goreleaser-action@v6
128128
with:
129129
version: latest
130130
args: release --rm-dist

‎.golangci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
run:
2+
go: "1.22.1"
13
linters:
24
enable:
35
- gofmt

‎.goreleaser.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
# Visit https://goreleaser.com for documentation on how to customize this
22
# behavior.
3+
# Version of the configuration file
4+
version: 2
5+
36
before:
47
hooks:
58
- go mod tidy
9+
610
builds:
711
- env:
812
- CGO_ENABLED=0
@@ -45,4 +49,4 @@ signs:
4549
release:
4650
draft: false
4751
changelog:
48-
skip: true
52+
disable: true

0 commit comments

Comments
 (0)