Skip to content

Commit

Permalink
internal/ci: bump Go and GoReleaser for v0.7.0-rc.1
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
mvdan committed Dec 1, 2023
1 parent 0e51dbb commit 8f88dcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
uses: actions/setup-go@v4
with:
cache: false
go-version: 1.21.0
go-version: 1.21.4
- name: Setup qemu
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand All @@ -83,7 +83,7 @@ jobs:
uses: goreleaser/goreleaser-action@v3
with:
install-only: true
version: v1.18.2
version: v1.22.1
- name: Run GoReleaser with CUE
run: cue cmd release
working-directory: ./internal/ci/goreleaser
Expand Down
3 changes: 1 addition & 2 deletions internal/ci/goreleaser/goreleaser.cue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ config: {
]
}]
archives: [{
rlcp: true
name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
files: [
"LICENSE",
Expand Down Expand Up @@ -59,7 +58,7 @@ config: {
if !#latest {
skip_upload: true
}
tap: {
repository: {
owner: "cue-lang"
name: "homebrew-tap"
}
Expand Down
4 changes: 2 additions & 2 deletions internal/ci/repo/repo.cue
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ latestStableGo: "1.21.x"
// Use a specific latest version for release builds.
// Note that we don't want ".x" for the sake of reproducibility,
// so we instead pin a specific Go release.
pinnedReleaseGo: "1.21.0"
pinnedReleaseGo: "1.21.4"

goreleaserVersion: "v1.18.2"
goreleaserVersion: "v1.22.1"

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

0 comments on commit 8f88dcb

Please sign in to comment.