Skip to content

Commit 293baa4

Browse files
committed
internal/ci: flip to using the official curated cue.dev schemas
A purely mechanical: cue refactor imports github.com/cue-tmp/jsonschema-pub/exp3/githubactions cue.dev/x/githubactions cue mod tidy Signed-off-by: Paul Jolly <[email protected]> Change-Id: Id338eb3002ae654e181e04d0a305fe71590e8b75 Reviewed-on: https://review.gerrithub.io/c/cue-lang/cuelang.org/+/1214065 TryBot-Result: CUEcueckoo <[email protected]> Reviewed-by: Jonathan Matthews <[email protected]>
1 parent 4b7114b commit 293baa4

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

cue.mod/module.cue

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ language: {
33
version: "v0.9.0"
44
}
55
deps: {
6-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions@v0": {
7-
v: "v0.2.0"
6+
"cue.dev/x/githubactions@v0": {
7+
v: "v0.0.0"
88
default: true
99
}
1010
}

internal/ci/base/gerrithub.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ package base
55
import (
66
"encoding/json"
77
"strings"
8-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions"
8+
"cue.dev/x/githubactions"
99
)
1010

1111
// trybotWorkflows is a template for trybot-based repos

internal/ci/base/github.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"list"
88
"strings"
99
"strconv"
10-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions"
10+
"cue.dev/x/githubactions"
1111
)
1212

1313
bashWorkflow: githubactions.#Workflow & {

internal/ci/gerrithub/gerrithub.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ package gerrithub
2525
import (
2626
"path"
2727
"strings"
28-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions"
28+
"cue.dev/x/githubactions"
2929
)
3030

3131
#repositoryURL: string

internal/ci/github/trybot.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import (
1818
"list"
1919
"strings"
2020
"strconv"
21-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions"
21+
"cue.dev/x/githubactions"
2222

2323
"github.com/cue-lang/cuelang.org/internal/ci/netlify"
2424
)

internal/ci/github/workflows.cue

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
package github
1717

1818
import (
19-
"github.com/cue-tmp/jsonschema-pub/exp3/githubactions"
19+
"cue.dev/x/githubactions"
2020
)
2121

2222
// Note: the name of the workflows (and hence the corresponding .yml filenames)

0 commit comments

Comments
 (0)