From 63a7ea6f1cb068b1787c1a6c0575bf69a1d6ba9d Mon Sep 17 00:00:00 2001 From: awalsh128 Date: Thu, 21 Oct 2021 21:03:30 -0700 Subject: [PATCH] Fix post cache action args. --- action.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1903152..25ccd90 100644 --- a/action.yml +++ b/action.yml @@ -46,6 +46,11 @@ runs: - id: post-cache run: | - ${{ github.action_path }}/pre_cache_action.sh ~/cache-apt-pkgs "${{ inputs.version }}" ${{ inputs.packages }} + ${{ github.action_path }}/post_cache_action.sh \ + ~/cache-apt-pkgs / \ + "${{ steps.load-cache.outputs.cache-hit }}" \ + "${{ inputs.refresh }}" \ + "${{ inputs.version }}" \ + ${{ inputs.packages }} echo "::set-output name=package-version-list::$(cat ~/cache-apt-pkgs/manifest.log)" shell: bash