From 28a17355f0131aea9e6cf1a74bc80d9d5814a89a Mon Sep 17 00:00:00 2001 From: meanmail Date: Thu, 18 Jan 2024 10:56:22 +0100 Subject: [PATCH] Remove git-crypt installation from action steps The installation of git-crypt is removed from the composite steps within 'runs' in our action.yml file. This change indicates that git-crypt is expected to be pre-installed in the environment where this action is running. --- .github/dependabot.yml | 11 +++++++++++ action.yml | 6 ------ 2 files changed, 11 insertions(+), 6 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..b5e8709 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "monday" + time: "00:00" + groups: + all-actions: + patterns: [ "*" ] diff --git a/action.yml b/action.yml index f7f5bfb..94d0b60 100644 --- a/action.yml +++ b/action.yml @@ -9,12 +9,6 @@ inputs: runs: using: "composite" steps: - - name: Install git-crypt - run: | - sudo apt-get update - sudo apt-get install -y git-crypt - shell: bash - - run: | echo "${{ inputs.git_crypt_key }}" | base64 -d > /tmp/data.key git-crypt unlock /tmp/data.key