@@ -22,13 +22,13 @@ jobs:
22
22
timeout-minutes : 30 # pre-commit env update can take time
23
23
steps :
24
24
- name : Checkout
25
- uses : actions/checkout@v3
25
+ uses : actions/checkout@v4
26
26
- name : Setup Python
27
- uses : actions/setup-python@v4
27
+ uses : actions/setup-python@v5
28
28
with :
29
29
python-version : 3.x
30
30
- name : Cache PyPI
31
- uses : actions/cache@v3
31
+ uses : actions/cache@v4
32
32
with :
33
33
key : pip-lint-${{ hashFiles('requirements.txt') }}
34
34
path : ~/.cache/pip
@@ -58,17 +58,18 @@ jobs:
58
58
timeout-minutes : 15
59
59
steps :
60
60
- name : Checkout
61
- uses : actions/checkout@v3
61
+ uses : actions/checkout@v4
62
62
- name : Setup Python ${{ matrix.pyver }}
63
- uses : actions/setup-python@v4
63
+ uses : actions/setup-python@v5
64
64
with :
65
65
python-version : ${{ matrix.pyver }}
66
66
- name : Get pip cache dir
67
67
id : pip-cache
68
68
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
70
71
- name : Cache PyPI
71
- uses : actions/cache@v3
72
+ uses : actions/cache@v4
72
73
with :
73
74
key : pip-ci-${{ runner.os }}-${{ matrix.pyver }}-${{ hashFiles('requirements/*.txt') }}
74
75
path : ${{ steps.pip-cache.outputs.dir }}
98
99
if : github.event_name == 'push' && contains(github.ref, 'refs/tags/')
99
100
steps :
100
101
- name : Checkout
101
- uses : actions/checkout@v3
102
+ uses : actions/checkout@v4
102
103
- name : Setup Python
103
- uses : actions/setup-python@v4
104
+ uses : actions/setup-python@v5
104
105
with :
105
106
python-version : 3.x
106
107
- name : Install dependencies
0 commit comments