From 0fd4efedb68ca49208ac74d3d4123479e77f524f Mon Sep 17 00:00:00 2001 From: alstjr7375 Date: Wed, 26 Apr 2023 18:17:41 +0900 Subject: [PATCH] Fix: CI - `::set-output` to `$GITHUB_OUTPUT` --- .github/actions/node-setup/action.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/actions/node-setup/action.yml b/.github/actions/node-setup/action.yml index 9848f55c..f0f138e7 100644 --- a/.github/actions/node-setup/action.yml +++ b/.github/actions/node-setup/action.yml @@ -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