From 0946c8401fd37803749c796a3a2a9f617ae0283b Mon Sep 17 00:00:00 2001 From: David Losada Carballo Date: Thu, 9 Mar 2023 12:03:32 +0100 Subject: [PATCH] chore(ci): replace deprecated set-output directive --- .github/workflows/test-and-ship.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-ship.yml b/.github/workflows/test-and-ship.yml index c47c02aeb9..3bf023eeaa 100644 --- a/.github/workflows/test-and-ship.yml +++ b/.github/workflows/test-and-ship.yml @@ -34,7 +34,7 @@ jobs: - name: Get npm cache directory id: npm-cache run: | - echo "::set-output name=dir::$(npm config get cache)" + echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - uses: actions/cache@v1 with: path: ${{ steps.npm-cache.outputs.dir }} @@ -91,7 +91,7 @@ jobs: - name: Get npm cache directory id: npm-cache run: | - echo "::set-output name=dir::$(npm config get cache)" + echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - uses: actions/cache@v1 with: path: ${{ steps.npm-cache.outputs.dir }}