diff --git a/tests/integration/testdata/bundles/exec-outputs/Dockerfile.tmpl b/tests/integration/testdata/bundles/exec-outputs/Dockerfile.tmpl index 03fb4a29e..81e7253a7 100644 --- a/tests/integration/testdata/bundles/exec-outputs/Dockerfile.tmpl +++ b/tests/integration/testdata/bundles/exec-outputs/Dockerfile.tmpl @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/* RUN apt-get update && apt-get install gnupg2 -y ENV JQ_VERSION='1.6' RUN wget --no-check-certificate https://raw.githubusercontent.com/jqlang/jq/master/sig/jq-release-new.key -O /tmp/jq-release.key && \ - wget --no-check-certificate https://raw.githubusercontent.com/jqlang/jq/master/sig/v${JQ_VERSION}/jq-linux64.asc -O /tmp/jq-linux64.asc && \ + wget --no-check-certificate https://github.com/jqlang/jq/blob/master/sig/v${JQ_VERSION}/jq-linux64.asc -O /tmp/jq-linux64.asc && \ wget --no-check-certificate https://github.com/jqlang/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 -O /tmp/jq-linux64 && \ gpg --import /tmp/jq-release-new.key && \ gpg --verify /tmp/jq-linux64.asc /tmp/jq-linux64 && \