From 291bbd614b9a8e8ff653f385eb3bac6029854558 Mon Sep 17 00:00:00 2001 From: Michael Hucka Date: Mon, 21 Nov 2022 11:58:58 -0800 Subject: [PATCH] Replace deprecated "set-output" construct in README example As of October 2022, the `set-output` construct is deprecated by GitHub for GitHub Actions. Source: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ This commit changes the use of the construct for the Sphinx example in the README.md file. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 181f98be2..628b25d86 100644 --- a/README.md +++ b/README.md @@ -976,7 +976,7 @@ jobs: - name: Get pip cache dir id: pip-cache - run: echo "::set-output name=dir::$(pip cache dir)" + run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT - name: Cache dependencies uses: actions/cache@v3