From f26f2a1d3329ada175fe365eeb59e5d820feece7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Sat, 15 Oct 2022 12:15:41 +0200 Subject: [PATCH] fix(repo): change github set output to env vars (#12618) --- .github/workflows/e2e-matrix.yml | 3 ++- .github/workflows/e2e-windows.yml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index a65c3c3a690bb..454d8a146d034 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -106,7 +106,8 @@ jobs: - name: Yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + shell: bash + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache yarn uses: actions/cache@v3 diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 96cc74ed8092e..699f7e90b03bd 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -52,7 +52,8 @@ jobs: - name: Yarn cache directory path id: yarn-cache-dir-path - run: echo "::set-output name=dir::$(yarn cache dir)" + shell: bash + run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Cache yarn uses: actions/cache@v3