From f957c0acfab38470da3eebcac3547d796fff2a57 Mon Sep 17 00:00:00 2001 From: ebronson68 <111298136+ebronson68@users.noreply.github.com> Date: Thu, 18 Jan 2024 15:52:24 -0600 Subject: [PATCH] Fix yarn install state path --- action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yaml b/action.yaml index e8a508f..5de3d79 100644 --- a/action.yaml +++ b/action.yaml @@ -77,7 +77,7 @@ runs: id: yarn-install-state-cache uses: actions/cache@v3 with: - path: ${{ inputs.cwd }}/.yarn/ci-cache + path: ${{ inputs.cwd }}/.yarn/ key: yarn-install-state-cache-${{ inputs.cache-prefix }}-${{ runner.os }}-${{ steps.yarn-config.outputs.CURRENT_NODE_VERSION }}-${{ steps.yarn-config.outputs.CURRENT_BRANCH }}-${{ hashFiles(format('{0}/yarn.lock', inputs.cwd), format('{0}/.yarnrc.yml', inputs.cwd)) }} - name: Install dependencies