File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1111
1212jobs :
1313 benchmarks :
14- runs-on : ubuntu-latest
14+ runs-on : ubuntu-22.04
1515 steps :
1616 - uses : actions/checkout@v3
1717 - uses : actions/setup-python@v3
2121 - name : Get full Python version
2222 id : full-python-version
2323 run : |
24- echo ::set-output name= version:: $(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
24+ echo version= $(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") >> $GITHUB_OUTPUT
2525
2626 - name : Install poetry
2727 run : |
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ jobs:
128128 id : check-version
129129 run : |
130130 [[ "${GITHUB_REF#refs/tags/}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
131- || echo ::set-output name= prerelease:: true
131+ || echo prerelease= true >> $GITHUB_OUTPUT
132132
133133 - name : Create Release
134134 uses : ncipollo/release-action@v1
Original file line number Diff line number Diff line change 5050 - name : Get full Python version
5151 id : full-python-version
5252 run : |
53- echo ::set-output name= version:: $(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))")
53+ echo version= $(python -c "import sys; print('-'.join(str(v) for v in sys.version_info))") >> $GITHUB_OUTPUT
5454
5555 - name : Install poetry
5656 run : |
You can’t perform that action at this time.
0 commit comments