Skip to content

Commit

Permalink
[release-branch.v0.5] internal/ci: use go1.19.8 for the release of v0…
Browse files Browse the repository at this point in the history
….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]>
  • Loading branch information
myitcv committed Apr 12, 2023
1 parent a1d9054 commit d780488
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .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.20.2
go-version: 1.19.8
- name: Setup qemu
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trybot_dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |-
cat <<EOD >> $GITHUB_OUTPUT
value<<DOE
{"type":"trybot","CL":552206,"patchset":12,"targetBranch":"master","ref":"refs/changes/06/552206/12"}
{"type":"trybot","CL":552504,"patchset":2,"targetBranch":"master","ref":"refs/changes/04/552504/2"}
DOE
EOD
- if: github.event.client_payload.type != 'trybot'
Expand Down
4 changes: 2 additions & 2 deletions internal/ci/github/gen_trybot_dispatch.cue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package github

dummyDispatch: {
CL: 552206
patchset: 12
CL: 552504
patchset: 2
}
2 changes: 1 addition & 1 deletion internal/ci/repo/repo.cue
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ latestStableGo: "1.20.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.20.2"
pinnedReleaseGo: "1.19.8"

goreleaserVersion: "v1.16.2"

Expand Down

0 comments on commit d780488

Please sign in to comment.