From 2abc9320d3e261ff23d031f4d6aef8d72147492e Mon Sep 17 00:00:00 2001 From: gionn Date: Mon, 22 Jul 2024 06:02:56 +0000 Subject: [PATCH 1/3] Apply automatic changes --- versions/activemq-5.18.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/versions/activemq-5.18.json b/versions/activemq-5.18.json index d5999a3..32242e7 100644 --- a/versions/activemq-5.18.json +++ b/versions/activemq-5.18.json @@ -1,3 +1,3 @@ { - "activemq_version": "5.18.4" + "activemq_version": "5.18.5" } From d85c56f01b83f66b099af7ae5698f59f6c367ce3 Mon Sep 17 00:00:00 2001 From: Giovanni Toraldo Date: Wed, 24 Jul 2024 16:42:21 +0200 Subject: [PATCH 2/3] debug curl --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 00e1513..9b043fc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,9 +36,9 @@ ENV DOWNLOAD_KEYS_URL="https://downloads.apache.org/activemq/KEYS" ENV LC_ALL=C RUN mkdir -p ${ACTIVEMQ_HOME} /data /var/log/activemq && \ - curl ${DOWNLOAD_URL} -so /tmp/activemq.tar.gz && \ - curl ${DOWNLOAD_ASC_URL} -so /tmp/activemq.tar.gz.asc && \ - curl ${DOWNLOAD_KEYS_URL} -so /tmp/KEYS && \ + curl ${DOWNLOAD_URL} -sSfo /tmp/activemq.tar.gz && \ + curl ${DOWNLOAD_ASC_URL} -sSfo /tmp/activemq.tar.gz.asc && \ + curl ${DOWNLOAD_KEYS_URL} -sSfo /tmp/KEYS && \ gpg --import /tmp/KEYS && \ gpg --verify /tmp/activemq.tar.gz.asc /tmp/activemq.tar.gz && \ tar -xzf /tmp/activemq.tar.gz -C /tmp && \ From 163c43587e33b227f3aea03b9fce5915689e5a3e Mon Sep 17 00:00:00 2001 From: Giovanni Toraldo Date: Wed, 24 Jul 2024 16:45:28 +0200 Subject: [PATCH 3/3] do not attempt to push while on dependabot --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d9ae493..de5f877 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -96,7 +96,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v5 with: - push: true + push: ${{ github.actor != 'dependabot[bot]' }} build-args: | ACTIVEMQ_VERSION=${{ steps.vars.outputs.activemq_version }} JDIST=${{ matrix.jdist }}