From f23e60cacf52b43ce50454115f1d59a6f556c59d Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Fri, 16 Sep 2022 00:04:25 +0100 Subject: [PATCH] Fix installation --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 5042933..da04035 100644 --- a/action.yml +++ b/action.yml @@ -52,7 +52,7 @@ inputs: runs: using: composite steps: - - run: apt-get install openssh-client git + - run: apt-get update && apt-get install openssh-client git shell: sh - run: $GITHUB_ACTION_PATH/entrypoint.sh "${{ inputs.source-before-directory }}" "${{ inputs.source-directory }}" "${{ inputs.destination-github-username }}" "${{ inputs.destination-repository-name }}" "${{ inputs.github-server }}" "${{ inputs.user-email }}" "${{ inputs.user-name }}" "${{ inputs.destination-repository-username }}" "${{ inputs.target-branch }}" "${{ inputs.commit-message }}" "${{ inputs.target-directory }}" shell: sh