From 5f1c89bb505792f79dc7d88f94532f8509ad93e7 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 28 Sep 2023 06:00:35 +0000 Subject: [PATCH 1/2] chore(deps): update dependency mozilla/sops to v3.8.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3d2606d..db91a1b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ENV HELM_VERSION=v3.13.0 # renovate: datasource=github-releases depName=helmfile/helmfile ENV HELMFILE_VERSION=v0.157.0 # renovate: datasource=github-releases depName=mozilla/sops -ENV SOPS_VERSION=v3.7.3 +ENV SOPS_VERSION=v3.8.0 # renovate: datasource=github-releases depName=kubernetes/kubernetes ENV KUBECTL_VERSION=v1.28.2 From c30734050561c8b1ee5b0e683fc167b314e5ca6a Mon Sep 17 00:00:00 2001 From: Manuel Hutter Date: Thu, 28 Sep 2023 08:05:03 +0200 Subject: [PATCH 2/2] Use new sops binary naming --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index db91a1b..77622d1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN set -x \ && tar -xzf /tmp/helmfile_${HELMFILE_VERSION#v}_linux_amd64.tar.gz \ && cp /tmp/helmfile /bin/helmfile \ # Sops - && wget -q -O /bin/sops "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux" \ + && wget -q -O /bin/sops "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64" \ && chmod +x /bin/helmfile /bin/sops \ # Cleanup && rm -rf /tmp/* \