Skip to content

Commit 1a05878

Browse files
authored
ci: migrate ::set-output command (#18)
## CI - Migrate the deprecated `::set-output` command to the `GITHUB_OUTPUT` environment variable See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/?WT.mc_id=DT-MVP-5003831
1 parent 5a5aa80 commit 1a05878

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: .github/workflows/website.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525

2626
- name: Variable-Yarn cache directory path
2727
id: yarn-cache-dir-path
28-
run: echo "::set-output name=dir::$(yarn cache dir)"
28+
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
2929
- name: Cache Yarn cache directory
3030
uses: actions/cache@v4
3131
with:

0 commit comments

Comments
 (0)