Skip to content

Commit

Permalink
Fix: CI - ::set-output to $GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
black7375 committed Apr 26, 2023
1 parent bd5479d commit 0fd4efe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/actions/node-setup/action.yml
Expand Up @@ -4,9 +4,10 @@ runs:
using: "composite"
steps:
# https://github.com/actions/cache/blob/main/examples.md#node---yarn
# https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
- 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
shell: bash

- name: Node cache
Expand Down

0 comments on commit 0fd4efe

Please sign in to comment.