From c030af6ef3fc48eae61eabb2868fd8b3e1e83891 Mon Sep 17 00:00:00 2001 From: Kenneth Jenkins <51246568+kenjenkins@users.noreply.github.com> Date: Thu, 31 Aug 2023 16:54:08 -0700 Subject: [PATCH] replace ::set-output in notify-tap action Update the notify-tap.yml GitHub Action workflow to replace the deprecated ::set-output command with the newer $GITHUB_OUTPUT file mechanism. --- .github/workflows/notify-tap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notify-tap.yml b/.github/workflows/notify-tap.yml index b6e6e3fa..bfc539ea 100644 --- a/.github/workflows/notify-tap.yml +++ b/.github/workflows/notify-tap.yml @@ -13,7 +13,7 @@ jobs: - id: clean_version run: | - echo "::set-output name=release::${VERSION#v}" + echo "release=${VERSION#v}" >> $GITHUB_OUTPUT env: VERSION: "${{ steps.get_version.outputs.release }}"