Skip to content

Commit bf8405f

Browse files
committed
Upgrade goreleaser-cross to v1.24
This commit upgrades goreleaser-cross to the latest version. This version includes a new version of goreleaser that deprecates some parameters, this commit upgrades those parameters to use the new version. This should fix an issue with the CI when go builds the go toolchain because the go.mod was using a newer version.
1 parent 05cbac4 commit bf8405f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.goreleaser.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ archives:
9898
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
9999
format_overrides:
100100
- goos: windows
101-
format: zip
101+
formats: [ 'zip' ]
102102
builds:
103103
- linux-amd64
104104
- linux-arm64
@@ -161,7 +161,7 @@ checksum:
161161
name_template: "checksums.txt"
162162

163163
snapshot:
164-
name_template: "{{ .Tag }}"
164+
version_template: "{{ .Tag }}"
165165

166166
changelog:
167167
sort: asc

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PKG?=github.com/smallstep/step-kms-plugin
22
BINNAME?=step-kms-plugin
3-
GOLANG_CROSS_VERSION?=v1.22
3+
GOLANG_CROSS_VERSION?=v1.24
44

55
# Set V to 1 for verbose output from the Makefile
66
Q=$(if $V,,@)

0 commit comments

Comments
 (0)