From 23e5a6e517a48bd380eb5019a96061ae4d5b4738 Mon Sep 17 00:00:00 2001 From: andrea rota Date: Tue, 19 Sep 2023 11:29:57 +0100 Subject: [PATCH] replace leftover use of set-output in GH actions workflow --- .github/workflows/cypress.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 43f91906d3..d524231894 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -28,7 +28,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 - name: Yarn cache uses: actions/cache@v2