From 9cc69576271c1469950e6a9e4f6f076faeb41b87 Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Thu, 25 Jan 2024 05:08:56 +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-yourkit-java.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-yourkit-java.yml b/.github/workflows/pb-update-yourkit-java.yml index a9730fb..1ca9382 100644 --- a/.github/workflows/pb-update-yourkit-java.yml +++ b/.github/workflows/pb-update-yourkit-java.yml @@ -50,12 +50,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 \