From 6ca79ef7f12b980e1755ac36c3498d6274998b53 Mon Sep 17 00:00:00 2001 From: Rodrigo Dantas Date: Mon, 30 May 2022 17:19:43 -0300 Subject: [PATCH 1/2] Update sops version on dockerfile Signed-off-by: Rodrigo Dantas --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6ada9107..cb6c1eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -52,7 +52,7 @@ RUN set -x && \ rm kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz && \ mv kustomize /usr/local/bin/kustomize -ENV SOPS_VERSION="v3.7.2" +ENV SOPS_VERSION="v3.7.3" RUN set -x && \ curl --retry 5 --retry-connrefused -LO https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 && \ chmod +x sops-${SOPS_VERSION}.linux.amd64 && \ From 86eff8e2ed79e15e5580f01fc9c36d9aaa11de54 Mon Sep 17 00:00:00 2001 From: Rodrigo Dantas Date: Mon, 30 May 2022 19:02:09 -0300 Subject: [PATCH 2/2] Update sops version on Dockerfile.debian and Dockerfile.ubuntu Signed-off-by: Rodrigo Dantas --- Dockerfile.debian | 2 +- Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index 1b1c15ae..6b3a3f11 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -56,7 +56,7 @@ RUN set -x && \ rm kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz && \ mv kustomize /usr/local/bin/kustomize -ENV SOPS_VERSION="v3.7.2" +ENV SOPS_VERSION="v3.7.3" RUN set -x && \ curl --retry 5 --retry-connrefused -LO https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 && \ chmod +x sops-${SOPS_VERSION}.linux.amd64 && \ diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 646d8fba..465464fa 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -56,7 +56,7 @@ RUN set -x && \ rm kustomize_${KUSTOMIZE_VERSION}_linux_amd64.tar.gz && \ mv kustomize /usr/local/bin/kustomize -ENV SOPS_VERSION="v3.7.2" +ENV SOPS_VERSION="v3.7.3" RUN set -x && \ curl --retry 5 --retry-connrefused -LO https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux.amd64 && \ chmod +x sops-${SOPS_VERSION}.linux.amd64 && \