From 059ae819ce43e14af1525804ea90d6783582adb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=ADguel=20=C3=81ngel=20Mulero=20Mart=C3=ADnez?= Date: Thu, 8 Dec 2022 22:01:16 +0100 Subject: [PATCH] Remove deprecated Github Action set-output option (#3119) --- .github/workflows/nightly.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ee65be6e..a4c08d08 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -49,11 +49,11 @@ jobs: id: notes run: | set -- release-assets/Betaflight-Configurator-Debug-* - echo "::set-output name=notes::$(test -e "$1" && echo '${{ env.debug_release_notes }}' || echo '${{ env.release_notes }}')" + echo "notes=$(test -e "$1" && echo '${{ env.debug_release_notes }}' || echo '${{ env.release_notes }}')" >> $GITHUB_OUTPUT - name: Get current date id: date - run: echo "::set-output name=today::$(date '+%Y%m%d')" + run: echo "today=$(date '+%Y%m%d')" >> $GITHUB_OUTPUT - name: Release uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15