File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,20 +14,20 @@ jobs:
14
14
runs-on : ubuntu-latest
15
15
steps :
16
16
# https://github.com/marketplace/actions/checkout
17
- - uses : actions/checkout@v2
17
+ - uses : actions/checkout@v4
18
18
with :
19
19
fetch-depth : 0
20
20
lfs : true
21
21
# https://github.com/marketplace/actions/setup-python
22
22
# ^-- This gives info on matrix testing.
23
23
- name : Install Python
24
- uses : actions/setup-python@v2
24
+ uses : actions/setup-python@v4
25
25
with :
26
26
python-version : 3.8
27
27
# https://docs.github.com/en/actions/guides/building-and-testing-python#caching-dependencies
28
28
# ^-- How to set up caching for pip on Ubuntu
29
29
- name : Cache pip
30
- uses : actions/cache@v2
30
+ uses : actions/cache@v4
31
31
with :
32
32
path : ~/.cache/pip
33
33
key : ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
You can’t perform that action at this time.
0 commit comments