@@ -22,13 +22,13 @@ jobs:
2222 timeout-minutes : 30 # pre-commit env update can take time
2323 steps :
2424 - name : Checkout
25- uses : actions/checkout@v3
25+ uses : actions/checkout@v4
2626 - name : Setup Python
27- uses : actions/setup-python@v4
27+ uses : actions/setup-python@v5
2828 with :
2929 python-version : 3.x
3030 - name : Cache PyPI
31- uses : actions/cache@v3
31+ uses : actions/cache@v4
3232 with :
3333 key : pip-lint-${{ hashFiles('requirements.txt') }}
3434 path : ~/.cache/pip
@@ -58,17 +58,18 @@ jobs:
5858 timeout-minutes : 15
5959 steps :
6060 - name : Checkout
61- uses : actions/checkout@v3
61+ uses : actions/checkout@v4
6262 - name : Setup Python ${{ matrix.pyver }}
63- uses : actions/setup-python@v4
63+ uses : actions/setup-python@v5
6464 with :
6565 python-version : ${{ matrix.pyver }}
6666 - name : Get pip cache dir
6767 id : pip-cache
6868 run : |
69- echo "::set-output name=dir::$(pip cache dir)" # - name: Cache
69+ echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT # - name: Cache
70+ shell : bash
7071 - name : Cache PyPI
71- uses : actions/cache@v3
72+ uses : actions/cache@v4
7273 with :
7374 key : pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('requirements/*.txt') }}
7475 path : ${{ steps.pip-cache.outputs.dir }}
9899 if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
99100 steps :
100101 - name : Checkout
101- uses : actions/checkout@v3
102+ uses : actions/checkout@v4
102103 - name : Setup Python
103- uses : actions/setup-python@v4
104+ uses : actions/setup-python@v5
104105 with :
105106 python-version : 3.x
106107 - name : Install dependencies
0 commit comments