Skip to content

Commit c0c33d0

Browse files
committed
ci: Removed deprecated set-output usage
1 parent 1ffb4d1 commit c0c33d0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# so we use this workaround https://github.com/actions/setup-node/issues/488
2424
- name: Get yarn cache directory path
2525
id: yarn-cache-dir-path
26-
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
26+
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
2727
shell: bash
2828
- name: Restore yarn cache
2929
uses: actions/cache@v3

.github/workflows/npm-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# so we use this workaround https://github.com/actions/setup-node/issues/488
2424
- name: Get yarn cache directory path
2525
id: yarn-cache-dir-path
26-
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
26+
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
2727
shell: bash
2828
- name: Restore yarn cache
2929
uses: actions/cache@v3

0 commit comments

Comments
 (0)