From a3260a25d0485004de8e225a5f6fc5ae51a4e2d6 Mon Sep 17 00:00:00 2001 From: Andreas Fernandez Date: Mon, 24 Oct 2022 14:28:44 +0200 Subject: [PATCH] [BUGFIX] Migrate deprecated set-output GitHub deprecated `set-output` in favor of environment files due to security reasons. See [1] for further information. [1] 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 c5aa31c..83cd825 100644 --- a/action.yml +++ b/action.yml @@ -113,4 +113,4 @@ runs: working-directory: t3docsproject run: | rm -Rf RenderedDocumentation - echo "::set-output name=renderedPath::t3docsproject/FinalDocumentation/" + echo "renderedPath=t3docsproject/FinalDocumentation/" >> $GITHUB_OUTPUT