File tree Expand file tree Collapse file tree 4 files changed +497
-525
lines changed
Expand file tree Collapse file tree 4 files changed +497
-525
lines changed Original file line number Diff line number Diff line change 3535
3636 steps :
3737 - name : Checkout repository
38- uses : actions/checkout@v2
38+ uses : actions/checkout@v3
3939
4040 # Initializes the CodeQL tools for scanning.
4141 - name : Initialize CodeQL
Original file line number Diff line number Diff line change 99 name : Build with Poetry and Publish to PyPI
1010 runs-on : ubuntu-latest
1111 steps :
12- - uses : actions/checkout@v2
13- - uses : actions/setup-python@v2
12+ - uses : actions/checkout@v3
13+ - uses : actions/setup-python@v3
1414 - name : Install and configure Poetry
1515 run : |
1616 pip install poetry
Original file line number Diff line number Diff line change @@ -27,19 +27,19 @@ jobs:
2727 - " 3.8"
2828 - " 3.9"
2929 - " 3.10"
30- - " 3.11.0-rc.2 "
30+ - " 3.11"
3131 steps :
32- - uses : actions/checkout@v2
32+ - uses : actions/checkout@v3
3333 - name : Set up Python ${{ matrix.python-version }}
34- uses : actions/setup-python@v2
34+ uses : actions/setup-python@v3
3535 with :
3636 python-version : ${{ matrix.python-version }}
3737 - name : Get full python version
3838 id : full-python-version
3939 run : |
40- echo ::set-output name= version:: $(python -c "import sys; print('- '.join(str(v) for v in sys.version_info[:3]))")
40+ echo version= $(python -c "import sys, platform ; print('. '.join(str(v) for v in sys.version_info[:3]) + '_' + platform.machine())") >> $GITHUB_OUTPUT
4141 - name : Set up cache
42- uses : actions/cache@v2
42+ uses : actions/cache@v3
4343 with :
4444 path : .venv
4545 key : ${{ runner.os }}-venv-${{ steps.full-python-version.outputs.version }}-${{ hashFiles('**/poetry.lock') }}
You can’t perform that action at this time.
0 commit comments