From 2c9839ccdf4436fc6f309ec5eea443a43ee9f690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Igor=20Pe=C4=8Dovnik?= Date: Tue, 15 Nov 2022 20:19:43 +0100 Subject: [PATCH] Address action script deprecation functionality (#4441) --- .github/workflows/build-images.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-images.yml b/.github/workflows/build-images.yml index d5338b036e..36d47a3c46 100644 --- a/.github/workflows/build-images.yml +++ b/.github/workflows/build-images.yml @@ -127,10 +127,10 @@ jobs: # skip if version in git is the same as at release if [[ "$RELE" == "$SOUR" ]]; then - echo ::set-output name=changes::$(echo 'true') + echo "changes=true" >> $GITHUB_OUTPUT fi # output version - echo ::set-output name=version::$(echo ${SOUR}) + echo "version=${SOUR}" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v3 with: