From c55e5c0d8c7365439e8544524a52bc8834f65cb8 Mon Sep 17 00:00:00 2001 From: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com> Date: Sat, 2 Aug 2025 13:48:39 +0200 Subject: [PATCH] chore: bump version of `jaq` and `step` Signed-off-by: Georg Lauterbach <44545919+georglauterbach@users.noreply.github.com> --- target/scripts/build/packages.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/scripts/build/packages.sh b/target/scripts/build/packages.sh index 8da4733b..44271a27 100644 --- a/target/scripts/build/packages.sh +++ b/target/scripts/build/packages.sh @@ -65,12 +65,12 @@ function _install_utils() { _log 'debug' 'Installing utils sourced from Github' _log 'trace' 'Installing jaq' - local JAQ_TAG='v2.1.0' + local JAQ_TAG='v2.3.0' curl -sSfL "https://github.com/01mf02/jaq/releases/download/${JAQ_TAG}/jaq-$(uname -m)-unknown-linux-gnu" -o /usr/local/bin/jaq chmod +x /usr/local/bin/jaq _log 'trace' 'Installing step' - local STEP_RELEASE='0.28.2' + 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"