From 52185b3b7c282e8fac13bd1a02f0a7463e8d071c Mon Sep 17 00:00:00 2001 From: Andrew Walsh Date: Wed, 30 Nov 2022 07:01:32 -0800 Subject: [PATCH] Fix braces. --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index afedc4b..1e77dd8 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,7 @@ runs: steps: - id: pre-cache run: | - ${{ GITHUB_ACTION_PATH }}/pre_cache_action.sh \ + ${GITHUB_ACTION_PATH}/pre_cache_action.sh \ ~/cache-apt-pkgs \ "${{ inputs.version }}" \ "${{ inputs.execute_install_scripts }}" \ @@ -60,7 +60,7 @@ runs: - id: post-cache run: | - ${{ GITHUB_ACTION_PATH }}/post_cache_action.sh \ + ${GITHUB_ACTION_PATH}/post_cache_action.sh \ ~/cache-apt-pkgs \ / \ "${{ steps.load-cache.outputs.cache-hit }}" \