This is an automated email from the ASF dual-hosted git repository.

mgrigorov pushed a commit to branch avro-3828-fix-ci-build-warnings
in repository https://gitbox.apache.org/repos/asf/avro.git


The following commit(s) were added to 
refs/heads/avro-3828-fix-ci-build-warnings by this push:
     new 529c8f4d7 AVRO-3828: [PHP] Replace usage of ::set-output with 
$GITHUB_OUTPUT
529c8f4d7 is described below

commit 529c8f4d718780e4c592526d42bc0ffe9c860f85
Author: Martin Tzvetanov Grigorov <[email protected]>
AuthorDate: Thu Aug 10 11:21:39 2023 +0300

    AVRO-3828: [PHP] Replace usage of ::set-output with $GITHUB_OUTPUT
    
    See 
https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
    
    Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
---
 .github/workflows/test-lang-php.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/test-lang-php.yml 
b/.github/workflows/test-lang-php.yml
index 378691785..0f1087175 100644
--- a/.github/workflows/test-lang-php.yml
+++ b/.github/workflows/test-lang-php.yml
@@ -54,7 +54,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:

Reply via email to