Skip to content

Commit 1713281

Browse files
committed
doc: remove stray references to Go
Replace with CUE. Also make clear that 'latest' is a version query, not a version. Also switch to using CUE v0.6.0 in this repo, given that is currently the latest. Fixes cue-lang/cue#2270. Signed-off-by: Paul Jolly <[email protected]>
1 parent b12ab27 commit 1713281

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Actions runner***
66
Use this action in your GitHub Actions workflow to install a specific version of
77
[CUE](https://cuelang.org) on your runner. The input `version` is a
88
[version](https://go.dev/ref/mod#versions) string like `v0.6.0`, or
9-
`v0.6.0-beta.1`. You can also use the keyword `latest` (default) to use the
10-
latest release of `cue`. Releases and pre-releases of `cue` are listed
9+
`v0.6.0-beta.1`. You can also use the version query `latest` (default) to use
10+
the latest release of `cue`. Releases and pre-releases of `cue` are listed
1111
[here](https://github.com/cue-lang/cue/releases).
1212

1313
```

action.cue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import "json.schemastore.org/github"
44

55
action: github.#Action & {
66
name: "Setup CUE environment"
7-
description: "Setup a Go environment and add it to the PATH."
7+
description: "Setup a CUE environment and add it to the PATH."
88
inputs: version: {
9-
description: #"The CUE version to setup. Must be a valid semantic version string like "v0.4.0" or "latest""#
9+
description: #"The CUE version to setup. Must be a valid version string like "v0.6.0", or "latest""#
1010
required: true
1111
default: "latest"
1212
}

action.yml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cue.mod/pkg/json.schemastore.org/github/github-workflow.cue

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workflows.cue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ buildAndTest: github.#Workflow & {
4040
{
4141
name: "Use CUE"
4242
uses: "./"
43-
with: version: "v0.4.3"
43+
with: version: "v0.6.0"
4444
},
4545
{
4646
name: "Check CUE version"

0 commit comments

Comments
 (0)