Skip to content

Commit

Permalink
ci: migrate ::set-output command
Browse files Browse the repository at this point in the history
Migrate the deprecated `::set-output` command to the `GITHUB_OUTPUT` environment variable
  • Loading branch information
LayZeeDK authored Sep 29, 2024
1 parent 5a5aa80 commit afa583f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Variable-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
- name: Cache Yarn cache directory
uses: actions/cache@v4
with:
Expand Down

0 comments on commit afa583f

Please sign in to comment.