From d07fc5d9ffe55fc29fee75a7e73cde68da308cdd Mon Sep 17 00:00:00 2001 From: Andrew Walsh Date: Wed, 7 Dec 2022 22:11:01 -0800 Subject: [PATCH] Workaround for #71. Due to a bug in the runner actions/runner#716 (#75) --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index d3312c8..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 }}" \