Skip to content

Commit

Permalink
Merge pull request #58 from belgattitude/doc-adapt-to-new-github-env
Browse files Browse the repository at this point in the history
Doc update to account for deprecated `set-output`.
  • Loading branch information
KSXGitHub committed Oct 13, 2022
2 parents 537643d + 6f9e9a8 commit 3360b50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -120,12 +120,12 @@ jobs:
- name: Get pnpm store directory
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
Expand Down

0 comments on commit 3360b50

Please sign in to comment.