From 93aeebde51b01e63284197bae89f9a1d6dd1921f Mon Sep 17 00:00:00 2001 From: RiX Date: Mon, 7 Nov 2022 22:01:41 +0100 Subject: [PATCH] Migrate deprecated set-output to GITHUB_OUTPUT env (#7) Fixes #6 https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 1a16214..b27c92f 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ runs: - id: run-script run: | result=$(base=${{ inputs.base-image }} image=${{ inputs.image }} ${{ github.action_path }}/docker.sh) - echo "::set-output name=result::${result}" + echo "result=${result}" >>$GITHUB_OUTPUT shell: bash branding: