File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11
11
12
12
jobs :
13
13
benchmarks :
14
- runs-on : ubuntu-latest
14
+ runs-on : ubuntu-22.04
15
15
steps :
16
16
- uses : actions/checkout@v3
17
17
- uses : actions/setup-python@v3
21
21
- name : Get full Python version
22
22
id : full-python-version
23
23
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
25
25
26
26
- name : Install poetry
27
27
run : |
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ jobs:
128
128
id : check-version
129
129
run : |
130
130
[[ "${GITHUB_REF#refs/tags/}" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] \
131
- || echo ::set-output name= prerelease:: true
131
+ || echo prerelease= true >> $GITHUB_OUTPUT
132
132
133
133
- name : Create Release
134
134
uses : ncipollo/release-action@v1
Original file line number Diff line number Diff line change 50
50
- name : Get full Python version
51
51
id : full-python-version
52
52
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
54
54
55
55
- name : Install poetry
56
56
run : |
You can’t perform that action at this time.
0 commit comments