Skip to content

Commit

Permalink
Remove git-crypt installation from action steps
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
meanmail committed Jan 18, 2024
1 parent 8afe424 commit 28a1735
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
day: "monday"
time: "00:00"
groups:
all-actions:
patterns: [ "*" ]
6 changes: 0 additions & 6 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 28a1735

Please sign in to comment.