1- FROM registry.access.redhat.com/ubi8/ubi-minimal:8.2
1+ FROM registry.access.redhat.com/ubi8/ubi-minimal:8.3
22
3- LABEL version="1.5 .0"
3+ LABEL version="1.6 .0"
44LABEL repository="http://github.com/redhat-cop/github-actions"
55LABEL homepage="http://github.com/redhat-cop/github-actions/confbatstest"
66LABEL maintainer="Red Hat CoP"
@@ -17,13 +17,13 @@ RUN microdnf install --assumeyes --nodocs tar wget python3 git findutils diffuti
1717 git --version && \
1818 diff --version
1919
20- RUN export OPA_VERSION=v0.22.0 && \
20+ RUN export OPA_VERSION=v0.25.2 && \
2121 wget --no-verbose --directory-prefix=/tmp https://github.com/open-policy-agent/opa/releases/download/${OPA_VERSION}/opa_linux_amd64 && \
2222 chmod +x /tmp/opa_linux_amd64 && \
2323 ln -s /tmp/opa_linux_amd64 /usr/local/bin/opa && \
2424 opa --help
2525
26- RUN export CONFTEST_VERSION=0.20 .0 && \
26+ RUN export CONFTEST_VERSION=0.22 .0 && \
2727 wget --no-verbose https://github.com/open-policy-agent/conftest/releases/download/v${CONFTEST_VERSION}/conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz && \
2828 tar -C /tmp -xzf conftest_${CONFTEST_VERSION}_Linux_x86_64.tar.gz && \
2929 ln -s /tmp/conftest /usr/local/bin/conftest && \
@@ -36,7 +36,7 @@ RUN export BATS_VERSION=master && \
3636 ln -s /opt/bats/bin/bats /usr/local/bin/bats && \
3737 bats --version
3838
39- RUN export HELM_VERSION=3.2.4 && \
39+ RUN export HELM_VERSION=3.4.1 && \
4040 wget --no-verbose https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz && \
4141 tar -C /tmp -xzf helm-v${HELM_VERSION}-linux-amd64.tar.gz && \
4242 ln -s /tmp/linux-amd64/helm /usr/local/bin/helm && \
@@ -48,13 +48,13 @@ RUN export JQ_VERSION=1.6 && \
4848 ln -s /tmp/jq-linux64 /usr/local/bin/jq && \
4949 jq --version
5050
51- RUN export OC_VERSION=4.5 && \
51+ RUN export OC_VERSION=4.6 && \
5252 wget --no-verbose https://mirror.openshift.com/pub/openshift-v4/clients/oc/${OC_VERSION}/linux/oc.tar.gz && \
5353 tar -C /tmp -xzf oc.tar.gz && \
5454 ln -s /tmp/oc /usr/local/bin/oc && \
5555 oc version
5656
57- RUN export GO_VERSION=1.14 && \
57+ RUN export GO_VERSION=1.15.6 && \
5858 wget --no-verbose https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz && \
5959 tar -C /tmp -xzf go${GO_VERSION}.linux-amd64.tar.gz && \
6060 ln -s /tmp/go/bin/go /usr/local/bin/go && \
@@ -74,4 +74,4 @@ RUN pip3 install yq && \
7474 yq --version
7575
7676ADD entrypoint.sh /entrypoint.sh
77- ENTRYPOINT ["/entrypoint.sh" ]
77+ ENTRYPOINT ["/entrypoint.sh" ]
0 commit comments