From 94230b89430ef061c338fe13493b1ed6a67895dc Mon Sep 17 00:00:00 2001 From: Kyle Harding Date: Tue, 5 Sep 2023 14:59:15 -0400 Subject: [PATCH] Update balena CLI to v17.0.0 Change-type: minor --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cad71b87..7f636f22 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ RUN apt-get update && apt-get install --no-install-recommends -y \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -ARG BALENA_CLI_VERSION=v15.1.1 +# renovate: datasource=github-releases depName=balena-io/balena-cli +ARG BALENA_CLI_VERSION=v17.0.0 # Install balena-cli via standlone zip to save install time RUN wget -q -O balena-cli.zip "https://github.com/balena-io/balena-cli/releases/download/${BALENA_CLI_VERSION}/balena-cli-${BALENA_CLI_VERSION}-linux-x64-standalone.zip" && \