this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

internal/ci: use go1.20.3 for releases

go1.20.3 (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 compiler, the linker, the runtime, and the time
package.

Pick up this latest version ahead of our release of v0.6.0-alpha.1

Signed-off-by: Paul Jolly <paul@myitcv.io>
Change-Id: I867c9b7793aea7350088dd24fa09cc5987483fb8
Reviewed-on: https://review.gerrithub.io/c/cue-lang/cue/+/552503
Unity-Result: CUEcueckoo <cueckoo@cuelang.org>
TryBot-Result: CUEcueckoo <cueckoo@cuelang.org>
Reviewed-by: Daniel Martí <mvdan@mvdan.cc>

+5 -5
+1 -1
.github/workflows/release.yml
··· 66 66 uses: actions/setup-go@v4 67 67 with: 68 68 cache: false 69 - go-version: 1.20.2 69 + go-version: 1.20.3 70 70 - name: Setup qemu 71 71 uses: docker/setup-qemu-action@v2 72 72 - name: Set up Docker Buildx
+1 -1
.github/workflows/trybot_dispatch.yml
··· 28 28 run: |- 29 29 cat <<EOD >> $GITHUB_OUTPUT 30 30 value<<DOE 31 - {"type":"trybot","CL":552206,"patchset":12,"targetBranch":"master","ref":"refs/changes/06/552206/12"} 31 + {"type":"trybot","CL":552503,"patchset":2,"targetBranch":"master","ref":"refs/changes/03/552503/2"} 32 32 DOE 33 33 EOD 34 34 - if: github.event.client_payload.type != 'trybot'
+2 -2
internal/ci/github/gen_trybot_dispatch.cue
··· 1 1 package github 2 2 3 3 dummyDispatch: { 4 - CL: 552206 5 - patchset: 12 4 + CL: 552503 5 + patchset: 2 6 6 }
+1 -1
internal/ci/repo/repo.cue
··· 35 35 // Use a specific latest version for release builds. 36 36 // Note that we don't want ".x" for the sake of reproducibility, 37 37 // so we instead pin a specific Go release. 38 - pinnedReleaseGo: "1.20.2" 38 + pinnedReleaseGo: "1.20.3" 39 39 40 40 goreleaserVersion: "v1.16.2" 41 41