File tree Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Expand file tree Collapse file tree 4 files changed +13
-15
lines changed Original file line number Diff line number Diff line change @@ -18,16 +18,14 @@ jobs:
1818 OS : ' linux'
1919 timeout-minutes : 2
2020 steps :
21- - uses : actions/cache@v1
21+ - uses : actions/cache@v4
2222 with :
2323 path : ~/.cache/pip
2424 key : static-pip-${{ hashFiles('setup.py') }}
2525 restore-keys : static-pip-
26- - uses : actions/checkout@v2
27- - uses : actions/setup-python@v2
26+ - uses : actions/checkout@v4
27+ - uses : actions/setup-python@v5
2828 with :
29- # TODO: check with Python 3, but need to fix the
30- # errors first
3129 python-version : ' 3.8'
3230 architecture : ' x64'
3331 - run : python -m pip install --upgrade pip setuptools
Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
2323 PYTHON_VERSION : ['3.10', '3.9', '3.8']
2424 timeout-minutes : 10
2525 steps :
26- - uses : actions/cache@v1
26+ - uses : actions/cache@v4
2727 with :
2828 path : ~/.cache/pip
2929 key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
3030 restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31- - uses : actions/checkout@v2
32- - uses : actions/setup-python@v2
31+ - uses : actions/checkout@v4
32+ - uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.PYTHON_VERSION }}
3535 architecture : ' x64'
Original file line number Diff line number Diff line change @@ -23,17 +23,17 @@ jobs:
2323 PYTHON_VERSION : ['3.10', '3.9', '3.8']
2424 timeout-minutes : 10
2525 steps :
26- - uses : actions/cache@v1
26+ - uses : actions/cache@v4
2727 with :
2828 path : ~/Library/Caches/pip
2929 key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
3030 restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31- - uses : actions/checkout@v2
32- - uses : actions/setup-python@v2
31+ - uses : actions/checkout@v4
32+ - uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.PYTHON_VERSION }}
3535 architecture : ' x64'
36- - run : python -m pip install --upgrade pip setuptools
36+ - run : pip install --upgrade pip setuptools
3737 - run : pip install -e .[all,test]
3838 - run : pytest -v test/
3939 # Enable this if SSH debugging is required
Original file line number Diff line number Diff line change @@ -23,13 +23,13 @@ jobs:
2323 PYTHON_VERSION : ['3.10', '3.9', '3.8']
2424 timeout-minutes : 10
2525 steps :
26- - uses : actions/cache@v1
26+ - uses : actions/cache@v4
2727 with :
2828 path : ~\AppData\Local\pip\Cache
2929 key : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-${{ hashFiles('setup.py') }}
3030 restore-keys : ${{ runner.os }}-${{ matrix.PYTHON_VERSION }}-pip-
31- - uses : actions/checkout@v2
32- - uses : actions/setup-python@v2
31+ - uses : actions/checkout@v4
32+ - uses : actions/setup-python@v5
3333 with :
3434 python-version : ${{ matrix.PYTHON_VERSION }}
3535 architecture : ' x64'
You can’t perform that action at this time.
0 commit comments