Skip to content

Commit 8f88dcb

Browse files
committed
internal/ci: bump Go and GoReleaser for v0.7.0-rc.1
I couldn't spot any breaking changes in the goreleaser changelog. It did show a couple of deprecations which were easy to fix; https://goreleaser.com/deprecations/#archivesrlcp is always on now, and https://goreleaser.com/deprecations/#brewstap was renamed. Signed-off-by: Daniel Martí <[email protected]> Change-Id: I1273d2062e1fd18fcce8b80d68eea0b302a475ed Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/1172985 TryBot-Result: CUEcueckoo <[email protected]> Unity-Result: CUE porcuepine <[email protected]> Reviewed-by: Paul Jolly <[email protected]>
1 parent 0e51dbb commit 8f88dcb

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
uses: actions/setup-go@v4
6767
with:
6868
cache: false
69-
go-version: 1.21.0
69+
go-version: 1.21.4
7070
- name: Setup qemu
7171
uses: docker/setup-qemu-action@v2
7272
- name: Set up Docker Buildx
@@ -83,7 +83,7 @@ jobs:
8383
uses: goreleaser/goreleaser-action@v3
8484
with:
8585
install-only: true
86-
version: v1.18.2
86+
version: v1.22.1
8787
- name: Run GoReleaser with CUE
8888
run: cue cmd release
8989
working-directory: ./internal/ci/goreleaser

internal/ci/goreleaser/goreleaser.cue

+1-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ config: {
2929
]
3030
}]
3131
archives: [{
32-
rlcp: true
3332
name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
3433
files: [
3534
"LICENSE",
@@ -59,7 +58,7 @@ config: {
5958
if !#latest {
6059
skip_upload: true
6160
}
62-
tap: {
61+
repository: {
6362
owner: "cue-lang"
6463
name: "homebrew-tap"
6564
}

internal/ci/repo/repo.cue

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ latestStableGo: "1.21.x"
3737
// Use a specific latest version for release builds.
3838
// Note that we don't want ".x" for the sake of reproducibility,
3939
// so we instead pin a specific Go release.
40-
pinnedReleaseGo: "1.21.0"
40+
pinnedReleaseGo: "1.21.4"
4141

42-
goreleaserVersion: "v1.18.2"
42+
goreleaserVersion: "v1.22.1"
4343

4444
// zeroReleaseTagSuffix is the suffix used to identify all "zero" releases.
4545
// When we create a release branch for v0.$X.0, it's likely that commits on the

0 commit comments

Comments
 (0)