mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2025-07-15 14:43:21 +08:00
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:
parent
e3b45f2700
commit
7166f2caa4
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user