From fb2aacb1581a55c2d544d9cf932d06ca103be5bc Mon Sep 17 00:00:00 2001 From: paketo-bot Date: Sat, 7 Jan 2023 02:29:25 +0000 Subject: [PATCH] Updating github-config --- .github/workflows/update-dependencies-from-metadata.yml | 7 ++++++- scripts/.util/tools.sh | 2 ++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-dependencies-from-metadata.yml b/.github/workflows/update-dependencies-from-metadata.yml index 8fd7bda..33ec97f 100644 --- a/.github/workflows/update-dependencies-from-metadata.yml +++ b/.github/workflows/update-dependencies-from-metadata.yml @@ -120,7 +120,12 @@ jobs: - name: Download upstream tarball (if not compiled) if: ${{ matrix.includes.uri != '' && needs.get-compile-and-test.outputs.should-test == 'true' }} run: | - curl ${{ matrix.includes.uri }} --silent --location --output ${{ steps.make-outputdir.outputs.outputdir }}/dependency.tgz + curl ${{ matrix.includes.uri }} \ + --fail-with-body \ + --show-error \ + --silent \ + --location \ + --output ${{ steps.make-outputdir.outputs.outputdir }}/dependency.tgz # Test the dependency tarball if: # (1) dependency testing code is present in the buildpack directory diff --git a/scripts/.util/tools.sh b/scripts/.util/tools.sh index c11fc05..a85c01c 100644 --- a/scripts/.util/tools.sh +++ b/scripts/.util/tools.sh @@ -54,6 +54,7 @@ function util::tools::jam::install() { util::print::title "Installing jam ${version}" curl "https://github.com/paketo-buildpacks/jam/releases/download/${version}/jam-${os}" \ + --fail \ --silent \ --location \ --output "${dir}/jam" @@ -101,6 +102,7 @@ function util::tools::pack::install() { util::print::title "Installing pack ${version}" curl "https://github.com/buildpacks/pack/releases/download/${version}/pack-${version}-${os}.tgz" \ + --fail \ --silent \ --location \ --output /tmp/pack.tgz