From 808da1fa77ecf3da82ad6470f23c17301e525f19 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Thu, 11 May 2023 04:53:45 -0500 Subject: [PATCH] Remove set-output from github actions (#15036) --- .github/workflows/lint.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 68ce9cdf7d..01410b557c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -59,7 +59,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 - name: Cache composer diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a9b2b11b89..c8954516ec 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -83,7 +83,7 @@ jobs: name: Get composer cache directory id: composer-cache run: | - echo "::set-output name=dir::$(composer config cache-files-dir)" + echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache composer uses: actions/cache@v3