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 }} 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 && \ 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" }