diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 47e1c665..2a913da8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: export CUE_VERSION="$(grep cue ./go.mod | cut -d' ' -f2)" export CUE_TARBALL="cue_${CUE_VERSION}_linux_amd64.tar.gz" echo "Installing cue version $CUE_VERSION" - curl -L https://github.com/cuelang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin + curl -L https://github.com/cue-lang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin - name: Go Lint uses: golangci/golangci-lint-action@v2 @@ -82,7 +82,7 @@ jobs: export CUE_VERSION="$(grep cue ./go.mod | cut -d' ' -f2)" export CUE_TARBALL="cue_${CUE_VERSION}_linux_amd64.tar.gz" echo "Installing cue version $CUE_VERSION" - curl -L https://github.com/cuelang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin + curl -L https://github.com/cue-lang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin - name: Install Dependencies run: | @@ -233,7 +233,7 @@ jobs: export CUE_VERSION="$(grep cue ./go.mod | cut -d' ' -f2)" export CUE_TARBALL="cue_${CUE_VERSION}_linux_amd64.tar.gz" echo "Installing cue version $CUE_VERSION" - curl -L https://github.com/cuelang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin + curl -L https://github.com/cue-lang/cue/releases/download/${CUE_VERSION}/${CUE_TARBALL} | sudo tar zxf - -C /usr/local/bin - name: Run local registry run: | diff --git a/docs/learn/1004-first-env.md b/docs/learn/1004-first-env.md index dcdc85d0..ca400f06 100644 --- a/docs/learn/1004-first-env.md +++ b/docs/learn/1004-first-env.md @@ -56,7 +56,7 @@ Each link in the graph represents a flow of data between nodes. For example: ### Install Cue Although not strictly necessary, for an optimal development experience, we recommend -[installing a recent version of Cue](https://github.com/cuelang/cue/releases/). +[installing a recent version of Cue](https://github.com/cue-lang/cue/releases/). ### Prepare Cue learning resources diff --git a/docs/learn/1007-kubernetes.md b/docs/learn/1007-kubernetes.md index 5a1774bb..c070b976 100644 --- a/docs/learn/1007-kubernetes.md +++ b/docs/learn/1007-kubernetes.md @@ -547,7 +547,7 @@ kubectl delete -f k8s/ This section will convert Kubernetes YAML manifest from `k8s` directory to [CUE](https://cuelang.org/) to take advantage of the language features. -> For a more advanced example, see the [official CUE Kubernetes tutorial](https://github.com/cuelang/cue/blob/v0.4.0/doc/tutorial/kubernetes/README.md) +> For a more advanced example, see the [official CUE Kubernetes tutorial](https://github.com/cue-lang/cue/blob/v0.4.0/doc/tutorial/kubernetes/README.md) ### Convert Kubernetes objects to CUE diff --git a/stdlib/.dagger/env/sanity-check/plan/main.cue b/stdlib/.dagger/env/sanity-check/plan/main.cue index 5d981a78..3b26b485 100644 --- a/stdlib/.dagger/env/sanity-check/plan/main.cue +++ b/stdlib/.dagger/env/sanity-check/plan/main.cue @@ -53,7 +53,7 @@ err: (os.#File & { """ set -e cd $(mktemp -d) - curl -L https://github.com/cuelang/cue/releases/download/v0.4.0/cue_v0.4.0_linux_amd64.tar.gz -o cue.tgz + curl -L https://github.com/cue-lang/cue/releases/download/v0.4.0/cue_v0.4.0_linux_amd64.tar.gz -o cue.tgz tar zxvf cue.tgz cp cue /usr/local/bin/cue rm -fr ./*