From b7213c0c3c884148eeab27a08ca8d5aa679681ba Mon Sep 17 00:00:00 2001 From: Matthew Graber Date: Tue, 2 Jan 2024 12:09:02 -0800 Subject: [PATCH 1/2] bumped yq & go versions, bumped OnEarth to 2.7.7-1 --- docker/deps/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/deps/Dockerfile b/docker/deps/Dockerfile index 5e0cd5c9..1089e258 100644 --- a/docker/deps/Dockerfile +++ b/docker/deps/Dockerfile @@ -36,13 +36,13 @@ RUN echo 'will cite' | parallel --citation || true # Install yq WORKDIR /tmp -RUN wget https://github.com/mikefarah/yq/releases/download/v4.40.3/yq_linux_amd64.tar.gz -O - |\ +RUN wget https://github.com/mikefarah/yq/releases/download/v4.40.5/yq_linux_amd64.tar.gz -O - |\ tar xz && mv yq_linux_amd64 /usr/bin/yq && rm -rf * # Install supercronic WORKDIR /tmp -RUN wget https://go.dev/dl/go1.21.3.linux-amd64.tar.gz && \ - tar xf go1.21.3.linux-amd64.tar.gz && \ +RUN wget https://go.dev/dl/go1.21.5.linux-amd64.tar.gz && \ + tar xf go1.21.5.linux-amd64.tar.gz && \ mv go /usr/local/ && \ ln -s /usr/local/go/bin/go /usr/local/bin/go && \ wget https://github.com/aptible/supercronic/archive/refs/tags/v0.2.28.tar.gz && \ From 4bf800a73e3b5a8c8ad2fa3b40f3b9cbea12bc52 Mon Sep 17 00:00:00 2001 From: Matthew Graber Date: Tue, 2 Jan 2024 12:13:29 -0800 Subject: [PATCH 2/2] bumped OnEarth to 2.7.7-1 --- version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.sh b/version.sh index 132b2bb6..2d96a04c 100755 --- a/version.sh +++ b/version.sh @@ -1,7 +1,7 @@ #!/bin/sh # The onearth version to use in the Docker image tag (e.g. onearth-wms:{ONEARTH_VERSION}-{ONEARTH_RELEASE}). -export ONEARTH_VERSION=2.7.6 # This must be manually incremented with each OnEarth version +export ONEARTH_VERSION=2.7.7 # This must be manually incremented with each OnEarth version # The onearth release to use in the Docker image tag (e.g. onearth-wms:{ONEARTH_VERSION}-{ONEARTH_RELEASE}). -export ONEARTH_RELEASE=3 # This must be manually incremented with each OnEarth build +export ONEARTH_RELEASE=1 # This must be manually incremented with each OnEarth build