Skip to content

Commit

Permalink
Merge pull request #5190 from LedgerHQ/support/pnpm-store-hash-files
Browse files Browse the repository at this point in the history
fix: only use pnpm-lock.yaml for the hash
  • Loading branch information
valpinkman authored Oct 25, 2023
2 parents d644b49 + 33f31e7 commit fb72a48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/actions/composites/setup-toolchain/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ runs:
if: inputs.no_pnpm_cache == '' && inputs.aws-access-key != '' && inputs.aws-secret-key != ''
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
accessKey: ${{ inputs.aws-access-key }}
Expand Down

0 comments on commit fb72a48

Please sign in to comment.