Skip to content

Commit d780488

Browse files
committed
[release-branch.v0.5] internal/ci: use go1.19.8 for the release of v0.5.0
This intentionally downgrades release-branch.v0.5 to use the go1.19.x series for releases. The upgrade to go1.20.x was a mistake in https://cuelang.org/cl/551832. go1.19.8 (released 2023-04-04) includes security fixes to the go/parser, html/template, mime/multipart, net/http, and net/textproto packages, as well as bug fixes to the linker, the runtime, and the time package Pick up this latest version ahead of our release of v0.5.0. Signed-off-by: Paul Jolly <[email protected]> Change-Id: Icbb59abe6c0275ae78e900a5168d32c155445e5b Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/552504 Reviewed-by: Daniel Martí <[email protected]> TryBot-Result: CUEcueckoo <[email protected]>
1 parent a1d9054 commit d780488

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: .github/workflows/release.yml

+1-1
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.20.2
69+
go-version: 1.19.8
7070
- name: Setup qemu
7171
uses: docker/setup-qemu-action@v2
7272
- name: Set up Docker Buildx

Diff for: .github/workflows/trybot_dispatch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |-
2929
cat <<EOD >> $GITHUB_OUTPUT
3030
value<<DOE
31-
{"type":"trybot","CL":552206,"patchset":12,"targetBranch":"master","ref":"refs/changes/06/552206/12"}
31+
{"type":"trybot","CL":552504,"patchset":2,"targetBranch":"master","ref":"refs/changes/04/552504/2"}
3232
DOE
3333
EOD
3434
- if: github.event.client_payload.type != 'trybot'

Diff for: internal/ci/github/gen_trybot_dispatch.cue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package github
22

33
dummyDispatch: {
4-
CL: 552206
5-
patchset: 12
4+
CL: 552504
5+
patchset: 2
66
}

Diff for: internal/ci/repo/repo.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ latestStableGo: "1.20.x"
3535
// Use a specific latest version for release builds.
3636
// Note that we don't want ".x" for the sake of reproducibility,
3737
// so we instead pin a specific Go release.
38-
pinnedReleaseGo: "1.20.2"
38+
pinnedReleaseGo: "1.19.8"
3939

4040
goreleaserVersion: "v1.16.2"
4141

0 commit comments

Comments
 (0)