Skip to content

Commit

Permalink
Merge pull request #5752 from arunsathiya/main
Browse files Browse the repository at this point in the history
Use GITHUB_OUTPUT envvar instead of set-output command as the latter is deprecated
  • Loading branch information
rgbkrk committed Dec 30, 2023
2 parents 08715ad + 577935c commit 7516211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
- name: Get Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- uses: actions/cache@v2
id: yarn-cache
Expand Down

1 comment on commit 7516211

@vercel
Copy link

@vercel vercel bot commented on 7516211 Dec 30, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.