-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also upgrade to go1.21.1 And set the Hugo version as 0.120.3 (a later version triggers some sort of error). Signed-off-by: Paul Jolly <[email protected]> Change-Id: Ib8042926d786ec646d34efb3f8636eb2b92e747e Dispatch-Trailer: {"type":"trybot","CL":1183640,"patchset":1,"ref":"refs/changes/40/1183640/1","targetBranch":"master"}
- Loading branch information
Showing
18 changed files
with
163 additions
and
91 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,22 @@ | ||
module github.com/cue-lang/cuelang.org | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.1 | ||
|
||
require ( | ||
cuelang.org/go v0.7.1 | ||
cuelang.org/go v0.8.0 | ||
github.com/apex/gateway v1.1.2 | ||
github.com/aws/aws-lambda-go v1.32.1 | ||
github.com/rogpeppe/testscript v1.1.0 | ||
golang.org/x/mod v0.13.0 | ||
golang.org/x/mod v0.16.0 | ||
) | ||
|
||
require ( | ||
github.com/cockroachdb/apd/v3 v3.2.1 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
golang.org/x/net v0.16.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
module github.com/cue-sh/playground | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.22.1 | ||
|
||
require ( | ||
cuelang.org/go v0.7.1 | ||
cuelang.org/go v0.8.0 | ||
github.com/cockroachdb/apd/v3 v3.2.1 | ||
golang.org/x/text v0.13.0 | ||
golang.org/x/text v0.14.0 | ||
) | ||
|
||
require ( | ||
cuelabs.dev/go/oci/ociregistry v0.0.0-20231103182354-93e78c079a13 // indirect | ||
cuelabs.dev/go/oci/ociregistry v0.0.0-20240314152124-224736b49f2e // indirect | ||
github.com/emicklei/proto v1.10.0 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mpvl/unique v0.0.0-20150818121801-cbe035fff7de // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc4 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/protocolbuffers/txtpbfmt v0.0.0-20230328191034-3462fbc510c0 // indirect | ||
golang.org/x/net v0.16.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
golang.org/x/net v0.22.0 // indirect | ||
golang.org/x/oauth2 v0.18.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.