From 4578e5b7e169c7d55f88dd276a14c1639bde694f Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Thu, 22 Aug 2024 15:55:03 +0200 Subject: [PATCH] Remove deprecated action code --- .github/workflows/continuous-integration.yml | 2 +- .github/workflows/phpstan.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 3e227da..5c45797 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -38,7 +38,7 @@ jobs: - name: Get composer cache directory id: composercache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: "echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT" - name: Cache dependencies uses: actions/cache@v4 diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 9329785..6253f9b 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -32,7 +32,7 @@ jobs: - name: Get composer cache directory id: composercache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" + run: "echo \"dir=$(composer config cache-files-dir)\" >> $GITHUB_OUTPUT" - name: Cache dependencies uses: actions/cache@v4