File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 99 strategy :
1010 matrix :
1111 python : ["3.9", "3.10", "3.11"]
12- os : [ubuntu-latest, macos-latest , windows-latest]
12+ os : [ubuntu-latest, macos-13 , windows-latest]
1313 runs-on : ${{ matrix.os }}
1414 env :
1515 OS : ${{ matrix.os }}
1616 PYTHON : ${{ matrix.python }}
1717 steps :
1818 - name : Checkout
19- uses : actions/checkout@v3
19+ uses : actions/checkout@v4
2020 - name : Install Python
21- uses : actions/setup-python@v4
21+ uses : actions/setup-python@v5
2222 with :
2323 python-version : ${{ matrix.python }}
2424
2525 - name : Install poetry
2626 run : python -m pip install poetry
2727 - name : Cache the virtualenv
2828 id : cache-venv
29- uses : actions/cache@v3
29+ uses : actions/cache@v4
3030 with :
3131 path : ./.venv
3232 key : ${{ runner.os }}-${{ matrix.python }}-venv-${{ hashFiles('**/poetry.lock') }}
You can’t perform that action at this time.
0 commit comments