File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -16,21 +16,21 @@ runs:
16
16
steps :
17
17
- name : Cache venv
18
18
id : cache-venv
19
- uses : actions/cache@v3
19
+ uses : actions/cache@v4
20
20
with :
21
21
path : .venv
22
22
key : venv-v2-${{ inputs.type }}-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('poetry.lock') }}
23
23
24
24
- name : Cache pre-commit
25
25
id : cache-pre-commit
26
- uses : actions/cache@v3
26
+ uses : actions/cache@v4
27
27
with :
28
28
path : ~/.cache/pre-commit
29
29
key : pre-commit-v2-${{ inputs.type }}-${{ runner.os }}-${{ inputs.python-version }}-${{ hashFiles('.pre-commit-config.yaml') }}
30
30
31
31
- name : Cache setup-poetry
32
32
id : cache-setup-poetry
33
- uses : actions/cache@v3
33
+ uses : actions/cache@v4
34
34
with :
35
35
path : |
36
36
~/.local/share/pypoetry
40
40
41
41
- name : Setup python
42
42
id : setup_python
43
- uses : actions/setup-python@v4
43
+ uses : actions/setup-python@v5
44
44
with :
45
45
python-version : ${{ inputs.python-version }}
46
46
Original file line number Diff line number Diff line change 17
17
runs-on : ubuntu-latest
18
18
steps :
19
19
- name : Checkout
20
- uses : actions/checkout@v3
20
+ uses : actions/checkout@v4
21
21
- name : Setup
22
22
uses : ./.github/actions/setup
23
23
with :
44
44
steps :
45
45
46
46
- name : Checkout
47
- uses : actions/checkout@v3
47
+ uses : actions/checkout@v4
48
48
49
49
- name : Setup
50
50
uses : ./.github/actions/setup
@@ -58,14 +58,14 @@ jobs:
58
58
make cov
59
59
60
60
- name : Codecov upload
61
- uses : codecov/codecov-action@v3.1.3
61
+ uses : codecov/codecov-action@v4
62
62
63
63
test-doc :
64
64
name : Test doc build
65
65
runs-on : ubuntu-latest
66
66
steps :
67
67
- name : Checkout
68
- uses : actions/checkout@v3
68
+ uses : actions/checkout@v4
69
69
70
70
- name : Setup
71
71
uses : ./.github/actions/setup
You can’t perform that action at this time.
0 commit comments