From 92863cf88ff31140e5dce5e74980313d2e400a21 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Thu, 25 Jan 2024 05:13:41 +0000 Subject: [PATCH] Bump pipeline from 1.36.2 to 1.36.5 Bumps pipeline from 1.36.2 to 1.36.5. Signed-off-by: GitHub --- .github/pipeline-version | 2 +- .github/workflows/pb-update-clojure.yml | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/pipeline-version b/.github/pipeline-version index c6a567b..f2fb3d7 100644 --- a/.github/pipeline-version +++ b/.github/pipeline-version @@ -1 +1 @@ -1.36.2 +1.36.5 diff --git a/.github/workflows/pb-update-clojure.yml b/.github/workflows/pb-update-clojure.yml index 8c12734..d436966 100644 --- a/.github/workflows/pb-update-clojure.yml +++ b/.github/workflows/pb-update-clojure.yml @@ -52,12 +52,14 @@ jobs: set -euo pipefail - if [ -z "${ARCH}" ]; then - ARCH="amd64" - fi + VERSION_DEPS=$(yj -tj < buildpack.toml | jq -r ".metadata.dependencies[] | select( .id == env.ID ) | select( .version | test( env.VERSION_PATTERN ) )") + ARCH=${ARCH:-amd64} + OLD_VERSION=$(echo "$VERSION_DEPS" | jq -r 'select( .purl | contains( env.ARCH ) ) | .version') - OLD_VERSION=$(yj -tj < buildpack.toml | \ - jq -r ".metadata.dependencies[] | select( .id == env.ID ) | select( .version | test( env.VERSION_PATTERN ) ) | select( .purl | contains( env.ARCH ) ) | .version") + if [ -z "$OLD_VERSION" ]; then + ARCH="" # empty means noarch + OLD_VERSION=$(echo "$VERSION_DEPS" | jq -r ".version") + fi update-buildpack-dependency \ --buildpack-toml buildpack.toml \