From f44e26587c24e405b6a32c97d15bd383da029dc5 Mon Sep 17 00:00:00 2001 From: Josh Gross Date: Thu, 7 Nov 2019 18:03:53 -0500 Subject: [PATCH] Fix output name --- examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples.md b/examples.md index 4a65f33..9ba2a89 100644 --- a/examples.md +++ b/examples.md @@ -105,7 +105,7 @@ For npm, cache files are stored in `~/.npm` on Posix, or `%AppData%/npm-cache` o echo "::set-output name=dir::$(npm config get cache)" - uses: actions/cache@v1 with: - path: ${{ steps.composer-cache.outputs.dir }} + path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} restore-keys: | ${{ runner.os }}-node-