Skip to content

Commit 7166f2c

Browse files
authored
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.
1 parent e3b45f2 commit 7166f2c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -976,7 +976,7 @@ jobs:
976976
977977
- name: Get pip cache dir
978978
id: pip-cache
979-
run: echo "::set-output name=dir::$(pip cache dir)"
979+
run: echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
980980
981981
- name: Cache dependencies
982982
uses: actions/cache@v3

0 commit comments

Comments
 (0)