File tree 3 files changed +4
-4
lines changed
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ jobs:
229
229
230
230
- name : Cache builder root
231
231
id : cache-builder-root
232
- uses : actions/cache@v3.3.3
232
+ uses : actions/cache@v4
233
233
with :
234
234
path : |
235
235
~/builder_root
Original file line number Diff line number Diff line change 28
28
python-version : " ${{ env.PYTHON_VERSION }}"
29
29
30
30
- name : Check cache
31
- uses : actions/cache/restore@v3
31
+ uses : actions/cache/restore@v4
32
32
id : cache
33
33
with :
34
34
path : ${{ runner.os == 'Windows' && '~\AppData\Local\pip\Cache' || runner.os == 'macOS' && '~/Library/Caches/pip' || '~/.cache/pip' }}
68
68
run : pip install ./datadog_checks_base[deps] ./datadog_checks_dev
69
69
70
70
- name : Cache dependencies
71
- uses : actions/cache/save@v3
71
+ uses : actions/cache/save@v4
72
72
if : steps.cache.outputs.cache-hit != 'true'
73
73
with :
74
74
path : ${{ runner.os == 'Windows' && '~\AppData\Local\pip\Cache' || runner.os == 'macOS' && '~/Library/Caches/pip' || '~/.cache/pip' }}
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ jobs:
137
137
138
138
- name : Restore cache
139
139
if : inputs.repo == 'core'
140
- uses : actions/cache/restore@v3
140
+ uses : actions/cache/restore@v4
141
141
with :
142
142
path : ${{ runner.os == 'Windows' && '~\AppData\Local\pip\Cache' || runner.os == 'macOS' && '~/Library/Caches/pip' || '~/.cache/pip' }}
143
143
key : >-
You can’t perform that action at this time.
0 commit comments