Skip to content

Commit

Permalink
chore(deps): Upgrade cue to 0.5.0 (#17204)
Browse files Browse the repository at this point in the history
Signed-off-by: Jesse Szwedko <jesse.szwedko@datadoghq.com>
  • Loading branch information
jszwedko authored Apr 24, 2023
1 parent 32a935b commit d396320
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/DOCUMENTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ suitable for complex data definitions.

Cue can be [installed](https://cuelang.org/docs/install/) from package managers,
however it may be necessary to install it from source in order to use the correct
version that Vector depends on. Currently Vector is using `v0.4.2`. Using a CUE
version that Vector depends on. Currently Vector is using `v0.5.0`. Using a CUE
version different than this may result in CUE check/build errors. We are aiming
to improve the developer experience around external tool dependencies ([#15909](https://github.com/vectordotdev/vector/issues/15909)).

Expand Down
6 changes: 3 additions & 3 deletions scripts/environment/bootstrap-ubuntu-20.04.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ apt install --yes \
# Cue
TEMP=$(mktemp -d)
curl \
-L https://github.com/cue-lang/cue/releases/download/v0.4.2/cue_v0.4.2_linux_amd64.tar.gz \
-o "${TEMP}/cue_v0.4.2_linux_amd64.tar.gz"
-L https://github.com/cue-lang/cue/releases/download/v0.5.0/cue_v0.5.0_linux_amd64.tar.gz \
-o "${TEMP}/cue_v0.5.0_linux_amd64.tar.gz"
tar \
-xvf "${TEMP}/cue_v0.4.2_linux_amd64.tar.gz" \
-xvf "${TEMP}/cue_v0.5.0_linux_amd64.tar.gz" \
-C "${TEMP}"
cp "${TEMP}/cue" /usr/bin/cue

Expand Down

0 comments on commit d396320

Please sign in to comment.