Skip to content

Commit

Permalink
docs: replace deprecated set-output (#800)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
mhucka committed Nov 22, 2022
1 parent e3b45f2 commit 7166f2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -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
Expand Down

0 comments on commit 7166f2c

Please sign in to comment.