4141 cache : ' npm'
4242 - name : Cache node modules
4343 id : cache-npm
44- uses : actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
44+ uses : actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
4545 with :
4646 path : |
4747 ~/.npm
8787 - name : Build application
8888 run : npm run build
8989 - name : Upload build output
90- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
90+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9191 with :
9292 name : nextjs-build-${{ github.run_id }}
9393 path : .next/
@@ -122,7 +122,7 @@ jobs:
122122 node-version : 24
123123 cache : ' npm'
124124 - name : Restore dependencies cache
125- uses : actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
125+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
126126 with :
127127 path : |
128128 ~/.npm
@@ -164,23 +164,23 @@ jobs:
164164 --reporter=dot,list
165165 - name : Upload test results
166166 if : always()
167- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
167+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
168168 with :
169169 name : playwright-results-shard-${{ matrix.shard }}-${{ github.run_id }}
170170 path : test-results/
171171 retention-days : 3
172172 if-no-files-found : ignore
173173 - name : Upload HTML report
174174 if : always()
175- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
175+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
176176 with :
177177 name : playwright-report-shard-${{ matrix.shard }}-${{ github.run_id }}
178178 path : playwright-report/
179179 retention-days : 30
180180 if-no-files-found : ignore
181181 - name : Upload server logs
182182 if : always()
183- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
183+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
184184 with :
185185 name : nextjs-logs-shard-${{ matrix.shard }}-${{ github.run_id }}
186186 path : nextjs.log
@@ -200,7 +200,7 @@ jobs:
200200 node-version : 24
201201 cache : ' npm'
202202 - name : Restore dependencies cache
203- uses : actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
203+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
204204 with :
205205 path : |
206206 ~/.npm
@@ -287,8 +287,10 @@ jobs:
287287 exit 1
288288 fi
289289 - name : Run TLS tests
290+ env :
291+ SKIP_SERVER_IDENTITY_CHECK : " true"
290292 run : |
291- NEXTAUTH_SECRET=SECRET npm start > nextjs.log 2>&1 &
293+ NEXTAUTH_SECRET=SECRET SKIP_SERVER_IDENTITY_CHECK=true npm start > nextjs.log 2>&1 &
292294 timeout 60s bash -c 'while !</dev/tcp/localhost/3000; do sleep 1; done'
293295 npx playwright test --workers=1 --reporter=dot,list --project="[TLS - Chromium]" --project="[TLS - Firefox]"
294296 - name : Cleanup TLS certificates
@@ -301,23 +303,23 @@ jobs:
301303 run : docker stop falkordb-tls || true
302304 - name : Upload test results
303305 if : always()
304- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
306+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
305307 with :
306308 name : playwright-results-tls-${{ github.run_id }}
307309 path : test-results/
308310 retention-days : 3
309311 if-no-files-found : ignore
310312 - name : Upload HTML report
311313 if : always()
312- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
314+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
313315 with :
314316 name : playwright-report-tls-${{ github.run_id }}
315317 path : playwright-report/
316318 retention-days : 30
317319 if-no-files-found : ignore
318320 - name : Upload server logs
319321 if : always()
320- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
322+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
321323 with :
322324 name : nextjs-logs-tls-${{ github.run_id }}
323325 path : nextjs.log
@@ -337,7 +339,7 @@ jobs:
337339 node-version : 24
338340 cache : ' npm'
339341 - name : Restore dependencies cache
340- uses : actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
342+ uses : actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
341343 with :
342344 path : |
343345 ~/.npm
@@ -438,23 +440,23 @@ jobs:
438440 done
439441 - name : Upload test results
440442 if : always()
441- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
443+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
442444 with :
443445 name : playwright-results-cluster-${{ github.run_id }}
444446 path : test-results/
445447 retention-days : 3
446448 if-no-files-found : ignore
447449 - name : Upload HTML report
448450 if : always()
449- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
451+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
450452 with :
451453 name : playwright-report-cluster-${{ github.run_id }}
452454 path : playwright-report/
453455 retention-days : 30
454456 if-no-files-found : ignore
455457 - name : Upload server logs
456458 if : always()
457- uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
459+ uses : actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
458460 with :
459461 name : nextjs-logs-cluster-${{ github.run_id }}
460462 path : nextjs.log
0 commit comments