From c90d35aa9bc80c83d659ce31c030db33b63fc3e1 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 21 Nov 2025 20:15:05 -0500 Subject: [PATCH 1/3] feat: upgrade zlib version from 1.3 to 1.3.1 --- bin/compile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 3b83faf..9c0dd4a 100755 --- a/bin/compile +++ b/bin/compile @@ -11,7 +11,8 @@ PCRE_VERSION="10.47" PCRE_TARBALL="pcre2-${PCRE_VERSION}.tar.gz" SIGIL_VERSION="0.10.1" SIGIL_TARBALL="gliderlabs-sigil_${SIGIL_VERSION}_linux_amd64.tgz" -ZLIB_VERSION="1.3" +# https://github.com/madler/zlib/releases +ZLIB_VERSION="1.3.1" ZLIB_TARBALL="zlib-${ZLIB_VERSION}.tar.gz" suppress() { From fa0e5758a5066fbd93be950c0b2ddbe6dd683401 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 21 Nov 2025 20:20:58 -0500 Subject: [PATCH 2/3] debug: set trace to 1 to see what the action is doing on push --- .github/workflows/review-app.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/review-app.yml b/.github/workflows/review-app.yml index 94d6a87..74eef9a 100644 --- a/.github/workflows/review-app.yml +++ b/.github/workflows/review-app.yml @@ -1,5 +1,5 @@ --- -name: 'review-app' +name: "review-app" # yamllint disable-line rule:truthy on: @@ -20,9 +20,10 @@ jobs: with: # create a review app command: review-apps:create - git_remote_url: 'ssh://dokku@dokku.com/nginx-buildpack' + git_remote_url: "ssh://dokku@dokku.com/nginx-buildpack" # specify `--force` as a flag for git pushes - git_push_flags: '--force' + git_push_flags: "--force" # specify a name for the review app review_app_name: nginx-buildpack-${{ github.event.pull_request.number }} ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} + trace: 1 From e5c4e68f8c8cdfa6338833e0d8e498723d0e9b21 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 21 Nov 2025 20:44:19 -0500 Subject: [PATCH 3/3] chore: remove debug mode --- .github/workflows/review-app.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/review-app.yml b/.github/workflows/review-app.yml index 74eef9a..28ceab3 100644 --- a/.github/workflows/review-app.yml +++ b/.github/workflows/review-app.yml @@ -26,4 +26,3 @@ jobs: # specify a name for the review app review_app_name: nginx-buildpack-${{ github.event.pull_request.number }} ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }} - trace: 1