Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save DanielKotik/4080b96bda8b1fdbb0c038f4efff4fb1 to your computer and use it in GitHub Desktop.
Save DanielKotik/4080b96bda8b1fdbb0c038f4efff4fb1 to your computer and use it in GitHub Desktop.
Install/update SOPS to latest on Fedora
# Install/update SOPS to latest on Fedora - https://github.com/mozilla/sops
echo "[+] Install/upgrade SOPS"
SOPS_VERSION=$(curl -s https://api.github.com/repos/mozilla/sops/releases/latest | jq .tag_name | tr -d '"')
dnf install -y https://github.com/mozilla/sops/releases/download/${SOPS_VERSION}/sops-${SOPS_VERSION}-1.x86_64.rpm
sops --version
# sops 3.2.0 (latest)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment