docs: replace deprecated set-output (#800)

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.
This commit is contained in:
Mike Hucka
2022-11-22 11:11:33 +09:00
committed by GitHub
parent e3b45f2700
commit 7166f2caa4
+1 -1
View File
@@ -976,7 +976,7 @@ jobs:
- name: Get pip cache dir - name: Get pip cache dir
id: pip-cache id: pip-cache
run: echo "::set-output name=dir::$(pip cache dir)" run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies - name: Cache dependencies
uses: actions/cache@v3 uses: actions/cache@v3