diff --git a/.github/workflows/Makefile b/.github/workflows/Makefile index 846d4c88..6702df17 100644 --- a/.github/workflows/Makefile +++ b/.github/workflows/Makefile @@ -62,7 +62,7 @@ vault: .PHONY: vault sops: - curl -sSLo $(tmp)/sops "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux" + curl -sSLo $(tmp)/sops "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}.linux" chmod +x $(tmp)/sops sudo mv ${tmp}/sops /usr/local/bin/ .PHONY: sops diff --git a/Dockerfile b/Dockerfile index ce8e90b7..b7c3085e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -78,7 +78,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/Dockerfile.debian-stable-slim b/Dockerfile.debian-stable-slim index 412cbde2..fd83e462 100644 --- a/Dockerfile.debian-stable-slim +++ b/Dockerfile.debian-stable-slim @@ -83,7 +83,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 50e1bdc3..3f608787 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -83,7 +83,7 @@ RUN set -x && \ ENV SOPS_VERSION="v3.7.3" ARG SOPS_FILENAME="sops-${SOPS_VERSION}.${TARGETOS}.${TARGETARCH}" RUN set -x && \ - curl --retry 5 --retry-connrefused -LO "https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ + curl --retry 5 --retry-connrefused -LO "https://github.com/getsops/sops/releases/download/${SOPS_VERSION}/${SOPS_FILENAME}" && \ chmod +x "${SOPS_FILENAME}" && \ mv "${SOPS_FILENAME}" /usr/local/bin/sops && \ sops --version | grep -E "^sops ${SOPS_VERSION#v}" diff --git a/examples/README.md b/examples/README.md index 1a74322b..bd8b0813 100644 --- a/examples/README.md +++ b/examples/README.md @@ -17,7 +17,7 @@ releases: # DB host, port, and connection opts for the environment values: - "deploy/environments/{{ env "RAILS_ENV" }}/values.yaml" - # DB username and password encrypted with helm-secrets(mozilla/sops) + # DB username and password encrypted with helm-secrets (getsops/sops) secrets: - "deploy/environments/{{ env "RAILS_ENV" }}/secrets.yaml" ```