From 3d92e2fd556bef7470d7e2a6aea63141183c20a6 Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Fri, 5 May 2023 23:18:27 +0900 Subject: [PATCH] docs: replace set-output with GITHUB_OUTPUT close https://github.com/peaceiris/actions-hugo/issues/633 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7c25fcd..2b829dd 100644 --- a/README.md +++ b/README.md @@ -185,7 +185,7 @@ Next, add a step to read a Hugo version from the `.env` file. id: hugo-version run: | . ./.env - echo "::set-output name=HUGO_VERSION::${HUGO_VERSION}" + echo "HUGO_VERSION=${HUGO_VERSION}" >> "${GITHUB_OUTPUT}" - name: Setup Hugo uses: peaceiris/actions-hugo@v2