From 08f1ce06546136ec9e21ede5c1c4326b1156c32f Mon Sep 17 00:00:00 2001 From: Alex Vega Date: Mon, 19 Jan 2026 19:37:03 +0700 Subject: [PATCH] fix: replace deprecated set-output with GITHUB_OUTPUT Replace the deprecated `::set-output` command with the new `$GITHUB_OUTPUT` environment file approach as per GitHub's recommendation. Fixes #108 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ab115a78..57054e11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: - 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 - uses: actions/cache@v4 id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)