From 343fbfd3e2ea38dcf782b2e71731a36c7d32c033 Mon Sep 17 00:00:00 2001 From: Andrew Walsh Date: Wed, 30 Nov 2022 06:56:53 -0800 Subject: [PATCH] Workaround for custom container bug. Workaround for #71. Due to a bug in the runner https://github.com/actions/runner/issues/716 --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index d3312c8..afedc4b 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 }}" \