@@ -37,10 +37,10 @@ jobs:
37
37
NODE_ENV : test
38
38
39
39
steps :
40
- - uses : actions/checkout@v2
40
+ - uses : actions/checkout@v3
41
41
42
42
- name : Set up Python ${{ matrix.python-version }}
43
- uses : actions/setup-python@v2
43
+ uses : actions/setup-python@v4
44
44
with :
45
45
python-version : ${{ matrix.python-version }}
46
46
@@ -53,14 +53,14 @@ jobs:
53
53
54
54
- name : Cache instrumented static files
55
55
id : cache-test-dist
56
- uses : actions/cache@v2
56
+ uses : actions/cache@v3
57
57
with :
58
58
path : nested_admin/tests/static
59
59
key : test-dist-${{ hashFiles('package-lock.json', '.github/workflows/test.yml', 'webpack.config.js', 'package.json', '.*rc*', 'nested_admin/static/nested_admin/src/**/*.*s') }}
60
60
61
61
- name : Cache node_modules
62
62
id : cache-node_modules
63
- uses : actions/cache@v2
63
+ uses : actions/cache@v3
64
64
with :
65
65
path : node_modules
66
66
key : node_modules-${{ hashFiles('package-lock.json') }}
91
91
92
92
- name : Upload junit xml
93
93
if : always()
94
- uses : actions/upload-artifact@v2
94
+ uses : actions/upload-artifact@v3
95
95
with :
96
96
name : junit-reports
97
97
path : reports/*.xml
@@ -125,17 +125,17 @@ jobs:
125
125
language : javascript
126
126
127
127
steps :
128
- - uses : actions/checkout@v2
128
+ - uses : actions/checkout@v3
129
129
130
- - uses : actions/setup-python@v2
130
+ - uses : actions/setup-python@v4
131
131
if : matrix.language == 'python'
132
132
with :
133
133
python-version : 3.9
134
134
135
135
- name : Cache node_modules
136
136
if : matrix.language == 'javascript'
137
137
id : cache-node_modules
138
- uses : actions/cache@v2
138
+ uses : actions/cache@v3
139
139
with :
140
140
path : node_modules
141
141
key : node_modules-${{ hashFiles('package-lock.json') }}-lint
@@ -184,7 +184,7 @@ jobs:
184
184
runs-on : ubuntu-latest
185
185
name : " Report Test Results"
186
186
steps :
187
- - uses : actions/download-artifact@v2
187
+ - uses : actions/download-artifact@v3
188
188
with :
189
189
name : junit-reports
190
190
0 commit comments