this repo has no description
0
fork

Configure Feed

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

internal/ci: bump actions/checkout and cue.dev/x/githubactions

As well as bumping the default version for internal/ci/checks.

Ahead of publishing a new version of internal/ci/base.

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

+5 -5
+1 -1
.github/workflows/release.yaml
··· 22 22 if: ${{github.repository == 'cue-lang/cue'}} 23 23 steps: 24 24 - name: Checkout code 25 - uses: actions/checkout@v5 25 + uses: actions/checkout@v6 26 26 with: 27 27 ref: ${{ github.event.pull_request.head.sha }} 28 28 fetch-depth: 0
+1 -1
.github/workflows/trybot.yaml
··· 37 37 Dispatch-Trailer: {"type":"')) 38 38 steps: 39 39 - name: Checkout code 40 - uses: actions/checkout@v5 40 + uses: actions/checkout@v6 41 41 with: 42 42 ref: ${{ github.event.pull_request.head.sha }} 43 43 fetch-depth: 0
+2 -2
internal/ci/base/github.cue
··· 90 90 checkoutCode: [...githubactions.#Step] & [ 91 91 { 92 92 name: "Checkout code" 93 - uses: "actions/checkout@v5" // TODO(mvdan): switch to namespacelabs/nscloud-checkout-action@v1 once Windows supports caching 93 + uses: "actions/checkout@v6" // TODO(mvdan): switch to namespacelabs/nscloud-checkout-action@v1 once Windows supports caching 94 94 95 95 // "pull_request_target" builds will by default use a merge commit, 96 96 // testing the PR's HEAD merged on top of the master branch. ··· 156 156 157 157 earlyChecks: githubactions.#Step & { 158 158 name: "Early git and code sanity checks" 159 - run: *"go run cuelang.org/go/internal/ci/checks@v0.14.1" | string 159 + run: *"go run cuelang.org/go/internal/ci/checks@v0.15.0" | string 160 160 } 161 161 162 162 curlGitHubAPI: {
+1 -1
internal/ci/cue.mod/module.cue
··· 7 7 } 8 8 deps: { 9 9 "cue.dev/x/githubactions@v0": { 10 - v: "v0.2.0" 10 + v: "v0.3.0" 11 11 default: true 12 12 } 13 13 }