2323 runs-on : ubuntu-20.04
2424
2525 steps :
26- - uses : actions/checkout@v3
26+ - uses : actions/checkout@v4
2727 with :
2828 submodules : ' recursive'
2929
4242 runs-on : ubuntu-20.04
4343
4444 steps :
45- - uses : actions/checkout@v3
45+ - uses : actions/checkout@v4
4646 with :
4747 submodules : ' recursive'
4848
@@ -73,18 +73,18 @@ jobs:
7373 steps :
7474 - name : Cache .hunter folder
7575 if : matrix.os != 'windows-latest'
76- uses : actions/cache@v3
76+ uses : actions/cache@v4
7777 with :
7878 path : ~/.hunter/
7979 key : hunter-${{ matrix.os }}-${{ matrix.cmake }}
8080 - name : Cache .hunter folder
8181 if : matrix.os == 'windows-latest'
82- uses : actions/cache@v3
82+ uses : actions/cache@v4
8383 with :
8484 path : C:/.hunter/
8585 key : hunter-${{ matrix.os }}-${{ matrix.cmake }}
8686
87- - uses : actions/checkout@v3
87+ - uses : actions/checkout@v4
8888 with :
8989 submodules : ' recursive'
9090
@@ -149,18 +149,18 @@ jobs:
149149 steps :
150150 - name : Cache .hunter folder
151151 if : matrix.os != 'windows-latest'
152- uses : actions/cache@v3
152+ uses : actions/cache@v4
153153 with :
154154 path : ~/.hunter/
155155 key : hunter-${{ matrix.os }}-shared_${{ matrix.shared }}
156156 - name : Cache .hunter folder
157157 if : matrix.os == 'windows-latest'
158- uses : actions/cache@v3
158+ uses : actions/cache@v4
159159 with :
160160 path : C:/.hunter/
161161 key : hunter-${{ matrix.os }}-shared_${{ matrix.shared }}
162162
163- - uses : actions/checkout@v3
163+ - uses : actions/checkout@v4
164164 with :
165165 submodules : ' recursive'
166166
@@ -200,16 +200,16 @@ jobs:
200200
201201 - name : Upload Win64 shared library
202202 if : matrix.os == 'windows-latest' && matrix.shared && matrix.platform == 'x64'
203- uses : actions/upload-artifact@v3
203+ uses : actions/upload-artifact@v4
204204 with :
205- name : windows-prebuilt-win64
205+ name : windows-prebuilt-win64-${{ matrix.build-type }}
206206 path : ${{ env.GITHUB_WORKSPACE }}/depthai_install/
207207
208208 - name : Upload Win32 shared library
209209 if : matrix.os == 'windows-latest' && matrix.shared && matrix.platform == 'Win32'
210- uses : actions/upload-artifact@v3
210+ uses : actions/upload-artifact@v4
211211 with :
212- name : windows-prebuilt-win32-no-opencv
212+ name : windows-prebuilt-win32-no-opencv-${{ matrix.build-type }}
213213 path : ${{ env.GITHUB_WORKSPACE }}/depthai_install/
214214
215215 - name : Build and test add_subdirectory
@@ -241,7 +241,7 @@ jobs:
241241
242242 # Clone repository
243243 steps :
244- - uses : actions/checkout@v3
244+ - uses : actions/checkout@v4
245245 with :
246246 submodules : ' recursive'
247247
@@ -255,20 +255,20 @@ jobs:
255255 # - name: Check if version matches
256256 # run: |
257257
258- - uses : actions/setup-python@v3
258+ - uses : actions/setup-python@v4
259259 with :
260260 python-version : ' 3.8'
261261 - name : Install dependencies
262262 run : python3.8 -m pip install git-archive-all
263263
264264 - name : Download Win64 artifacts
265- uses : actions/download-artifact@v3
265+ uses : actions/download-artifact@v4
266266 with :
267267 name : ' windows-prebuilt-win64'
268268 path : depthai-core-${{ steps.tag.outputs.version }}-win64
269269
270270 - name : Download Win32 artifacts
271- uses : actions/download-artifact@v3
271+ uses : actions/download-artifact@v4
272272 with :
273273 name : ' windows-prebuilt-win32-no-opencv'
274274 path : depthai-core-${{ steps.tag.outputs.version }}-win32-no-opencv
0 commit comments