Skip to content

Commit 68ead3f

Browse files
committed
Move to new output API
1 parent b50cae8 commit 68ead3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ runs:
2727
shell: bash
2828
run: |
2929
if grep --quiet "^pnpm " .tool-versions; then
30-
echo "::set-output name=detected::true"
30+
echo "detected=true" >> $GITHUB_OUTPUT
3131
fi
3232
- name: Get pnpm store directory
3333
if: steps.pnpm.outputs.detected == 'true'
3434
id: pnpm-cache
3535
shell: bash
3636
run: |
37-
echo "::set-output name=path::$(pnpm store path)"
37+
echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT
3838
- name: Cache pnpm modules
3939
if: steps.pnpm.outputs.detected == 'true'
4040
uses: actions/cache@v3

0 commit comments

Comments
 (0)