Skip to content
This repository was archived by the owner on Feb 27, 2026. It is now read-only.

Commit 7516211

Browse files
authored
Merge pull request #5752 from arunsathiya/main
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
2 parents 08715ad + 577935c commit 7516211

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
3030
- name: Get Yarn cache directory path
3131
id: yarn-cache-dir-path
32-
run: echo "::set-output name=dir::$(yarn cache dir)"
32+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
3333

3434
- uses: actions/cache@v2
3535
id: yarn-cache

0 commit comments

Comments
 (0)