From 927af1abc64a26b22d3cf711e37d44a1e51f3a3e Mon Sep 17 00:00:00 2001 From: Arun Date: Thu, 11 Jan 2024 17:13:41 -0800 Subject: [PATCH 1/2] ci: Use GITHUB_OUTPUT envvar instead of set-output command --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e64752..73628a8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: node-version: 14.15.4 - name: Find yarn cache location id: yarn-cache - run: echo "::set-output name=dir::$(yarn cache dir)" + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: JS package cache uses: actions/cache@v1 with: From d84bdf625ae0ff78dcba2f43eec173769281b8b7 Mon Sep 17 00:00:00 2001 From: Arun Date: Mon, 22 Jan 2024 17:15:07 -0800 Subject: [PATCH 2/2] Quote envvar to match documentation --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 73628a8..b21f554 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,7 +45,7 @@ jobs: node-version: 14.15.4 - name: Find yarn cache location id: yarn-cache - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT + run: echo "dir=$(yarn cache dir)" >> "$GITHUB_OUTPUT" - name: JS package cache uses: actions/cache@v1 with: