From 555832f941480cede4752b92f46b1ff8ef9278d7 Mon Sep 17 00:00:00 2001 From: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com> Date: Fri, 3 Apr 2026 12:55:07 +0200 Subject: [PATCH] chore: bump `step-cli` from 0.28.7 to 0.30.2 Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com> --- target/scripts/build/packages.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/target/scripts/build/packages.sh b/target/scripts/build/packages.sh index f8e8a142..4d45dd1f 100644 --- a/target/scripts/build/packages.sh +++ b/target/scripts/build/packages.sh @@ -66,9 +66,11 @@ function _install_utils() { chmod +x /usr/local/bin/jaq _log 'trace' 'Installing step' - local STEP_RELEASE='0.28.7' - curl -sSfL "https://github.com/smallstep/cli/releases/download/v${STEP_RELEASE}/step_linux_${STEP_RELEASE}_${ARCH_B}.tar.gz" \ - | tar -xz --directory /usr/local/bin --no-same-owner --strip-components=2 "step_${STEP_RELEASE}/bin/step" + local STEP_CLI_VERSION='0.30.2' + curl -sSfL -o /tmp/step-cli.deb \ + "https://github.com/smallstep/cli/releases/download/v${STEP_CLI_VERSION}/step-cli_${ARCH_B}.deb" + dpkg -i /tmp/step-cli.deb + rm /tmp/step-cli.deb _log 'trace' 'Installing swaks' # `perl-doc` is required for `swaks --help` to work: