Skip to content

Commit b230c4e

Browse files
authored
use $GITHUB_OUTPUT instead of ::set-output (#142)
* use `$GITHUB_OUTPUT` instead of `::set-output` * upgrade the nightly python version [test-upstream]
1 parent 11392a0 commit b230c4e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/nightly.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
strategy:
4242
fail-fast: false
4343
matrix:
44-
python-version: ["3.11"]
44+
python-version: ["3.12"]
4545

4646
outputs:
4747
artifacts_availability: ${{ steps.status.outputs.ARTIFACTS_AVAILABLE }}
@@ -84,7 +84,7 @@ jobs:
8484
cd docs
8585
python -m sphinx -M html -d _build/doctrees -EWT -a . _build/html \
8686
| tee output-${{ matrix.python-version }}-log || (
87-
echo '::set-output name=ARTIFACTS_AVAILABLE::true' && false
87+
echo "ARTIFACTS_AVAILABLE=true" >> $GITHUB_OUTPUT && false
8888
)
8989
9090
report:

0 commit comments

Comments
 (0)