From 4ac412933e7ff5e6c84904cb1dc7f874064e281d Mon Sep 17 00:00:00 2001 From: Antonio Giner Date: Fri, 1 Nov 2024 13:25:51 +0100 Subject: [PATCH] Deprecate set-output in github actions. --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0045fae5bd84c..5309c5944e215 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -143,9 +143,9 @@ jobs: srv="${tag: -3}" echo "GroovyMAME: 0.$mamev" echo "Switchres : 2.$srv" - echo "::set-output name=mame_version::${mamev}" - echo "::set-output name=switchres_version::${srv}" - echo "::set-output name=current_tag::${tag}" + echo "mame_version=${mamev}" >> $GITHUB_OUTPUT + echo "switchres_version=${srv}" >> $GITHUB_OUTPUT + echo "current_tag=${tag}" >> $GITHUB_OUTPUT - name: Download Artifacts uses: actions/download-artifact@v4 - name: Create Release