From cd0f1fc3526104c86354f0d82a19dbb29a66e725 Mon Sep 17 00:00:00 2001 From: Arif Kurkchi Date: Sun, 17 Sep 2023 13:26:19 +0300 Subject: [PATCH] Remove `set-output` --- .github/workflows/coding-standards.yaml | 3 +-- .github/workflows/psalm.yaml | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coding-standards.yaml b/.github/workflows/coding-standards.yaml index 5b5f4449b..2c0ac2a8f 100644 --- a/.github/workflows/coding-standards.yaml +++ b/.github/workflows/coding-standards.yaml @@ -32,8 +32,7 @@ jobs: - name: "Get composer cache directory" id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 with: diff --git a/.github/workflows/psalm.yaml b/.github/workflows/psalm.yaml index 2c4604865..598032b64 100644 --- a/.github/workflows/psalm.yaml +++ b/.github/workflows/psalm.yaml @@ -32,8 +32,7 @@ jobs: - name: "Get composer cache directory" id: composer-cache - run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" + run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - uses: actions/cache@v3 with: