Skip to content

Commit

Permalink
ci: migrate ::set-output command (#18)
Browse files Browse the repository at this point in the history
## 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
  • Loading branch information
LayZeeDK authored Sep 29, 2024
1 parent 5a5aa80 commit 1a05878
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 1a05878

Please sign in to comment.