From 7328a3a02b4a79eb67b1aada5f3b3e56ecda1252 Mon Sep 17 00:00:00 2001 From: Arora <40769427+arora-r@users.noreply.github.com> Date: Thu, 26 Oct 2023 10:33:41 -0400 Subject: [PATCH] fix: install sops in addition to helm to make dependencies work (#3) * fix: install sops in addition to helm to make dependencies work * update values * ? * remove branding * test * fix typo * add back branding * remove extra eof --- action.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/action.yml b/action.yml index 20c8cdc..5dfce46 100644 --- a/action.yml +++ b/action.yml @@ -33,6 +33,10 @@ inputs: description: "helm-x plugin version" default: "0.8.1" required: false + sops-version: + description: "sops version" + default: "3.8.0" + required: false runs: using: "composite" @@ -75,3 +79,7 @@ runs: - run: | helm plugin install https://github.com/mumoshu/helm-x --version ${{ inputs.helm-x-version }} shell: bash + - name: Sops Binary Installer + uses: mdgreenwald/mozilla-sops-action@v1.4.1 + with: + version: ${{ inputs.sops-version }}