We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b50cae8 commit 68ead3fCopy full SHA for 68ead3f
action.yml
@@ -27,14 +27,14 @@ runs:
27
shell: bash
28
run: |
29
if grep --quiet "^pnpm " .tool-versions; then
30
- echo "::set-output name=detected::true"
+ echo "detected=true" >> $GITHUB_OUTPUT
31
fi
32
- name: Get pnpm store directory
33
if: steps.pnpm.outputs.detected == 'true'
34
id: pnpm-cache
35
36
37
- echo "::set-output name=path::$(pnpm store path)"
+ echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT
38
- name: Cache pnpm modules
39
40
uses: actions/cache@v3
0 commit comments