From 771dd054395a0e0a33e2d712d9793ca8322173e9 Mon Sep 17 00:00:00 2001 From: kristof-ringleff <47804013+kristof-ringleff@users.noreply.github.com> Date: Wed, 29 Apr 2026 13:54:56 +1200 Subject: [PATCH] fix(cache-magento): address `set-output` deprecation (#231) --- cache-magento/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cache-magento/action.yml b/cache-magento/action.yml index 4486b75..575849c 100644 --- a/cache-magento/action.yml +++ b/cache-magento/action.yml @@ -22,11 +22,11 @@ runs: run: | echo "dir=$(composer config cache-files-dir --global)" >> $GITHUB_OUTPUT - - run: echo "::set-output name=version::$(php -v | awk 'NR==1{print $2}')" + - run: echo "version=$(php -v | awk 'NR==1{print $2}')" >> "$GITHUB_OUTPUT" shell: bash id: cache-magento-get-php-version - - run: echo "::set-output name=version::$(composer --version | awk '{print $3}')" + - run: echo "version=$(composer --version | awk '{print $3}')" >> "$GITHUB_OUTPUT" shell: bash name: Compute Composer Version id: cache-magento-get-composer-version