From 0856dcd382a90e7a379e6dd51326d5e65cdf9289 Mon Sep 17 00:00:00 2001 From: Jesse Szwedko Date: Thu, 5 Sep 2024 14:15:52 -0700 Subject: [PATCH] chore(ci): Update version of cue to latest (0.10.0) Signed-off-by: Jesse Szwedko --- scripts/environment/bootstrap-ubuntu-20.04.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/environment/bootstrap-ubuntu-20.04.sh b/scripts/environment/bootstrap-ubuntu-20.04.sh index 6e6f85129f626..f0ca6777b670b 100755 --- a/scripts/environment/bootstrap-ubuntu-20.04.sh +++ b/scripts/environment/bootstrap-ubuntu-20.04.sh @@ -50,10 +50,10 @@ apt-get install --yes --no-install-recommends \ # Cue TEMP=$(mktemp -d) curl \ - -L https://github.com/cue-lang/cue/releases/download/v0.9.1/cue_v0.9.1_linux_amd64.tar.gz \ - -o "${TEMP}/cue_v0.9.1_linux_amd64.tar.gz" + -L https://github.com/cue-lang/cue/releases/download/v0.10.0/cue_v0.10.0_linux_amd64.tar.gz \ + -o "${TEMP}/cue_v0.10.0_linux_amd64.tar.gz" tar \ - -xvf "${TEMP}/cue_v0.9.1_linux_amd64.tar.gz" \ + -xvf "${TEMP}/cue_v0.10.0_linux_amd64.tar.gz" \ -C "${TEMP}" cp "${TEMP}/cue" /usr/bin/cue rm -rf "$TEMP"