33
33
uses : actions/checkout@v4
34
34
35
35
- name : Set up Python ${{ matrix.python }}
36
- uses : actions/setup-python@v4
36
+ uses : actions/setup-python@v5
37
37
with :
38
38
python-version : ${{ matrix.python }}
39
39
78
78
print("::set-output name=result::{}".format(result))
79
79
80
80
- name : Restore pre-commit cache
81
- uses : actions/cache@v3
81
+ uses : actions/cache@v4
82
82
if : matrix.session == 'pre-commit'
83
83
with :
84
84
path : ~/.cache/pre-commit
@@ -92,14 +92,14 @@ jobs:
92
92
93
93
- name : Upload coverage data
94
94
if : always() && matrix.session == 'tests'
95
- uses : " actions/upload-artifact@v3 "
95
+ uses : " actions/upload-artifact@v4 "
96
96
with :
97
97
name : coverage-data
98
98
path : " .coverage.*"
99
99
100
100
- name : Upload documentation
101
101
if : matrix.session == 'docs-build'
102
- uses : actions/upload-artifact@v3
102
+ uses : actions/upload-artifact@v4
103
103
with :
104
104
name : docs
105
105
path : docs/_build
@@ -114,7 +114,7 @@ jobs:
114
114
uses : actions/checkout@v4
115
115
116
116
- name : Set up Python
117
- uses : actions/setup-python@v4
117
+ uses : actions/setup-python@v5
118
118
with :
119
119
python-version : " 3.10"
120
120
@@ -135,7 +135,7 @@ jobs:
135
135
nox --version
136
136
137
137
- name : Download coverage data
138
- uses : actions/download-artifact@v3
138
+ uses : actions/download-artifact@v4
139
139
with :
140
140
name : coverage-data
141
141
0 commit comments