From 0aa3569da4d77a01e42765ab8439c7a0c0d2b13e Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 22 Nov 2022 14:01:02 +0100 Subject: [PATCH] Remove deprecated set-output command (#69) --- action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yaml b/action.yaml index 611d0fd..5d97fbf 100644 --- a/action.yaml +++ b/action.yaml @@ -41,7 +41,7 @@ runs: exit 1 fi - echo "::set-output name=path::${path}" + echo "path=${path}" >> "$GITHUB_OUTPUT" - name: 🏗 Ensure secrets are in place shell: bash @@ -87,7 +87,7 @@ runs: version="stable" fi fi - echo "::set-output name=version::${version}" + echo "version=${version}" >> "$GITHUB_OUTPUT" docker pull -q "ghcr.io/home-assistant/home-assistant:${version}"