File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -304,6 +304,14 @@ jobs:
304
304
- 80:80
305
305
306
306
steps :
307
+ - name : Install libssl3 # Our binaries are built on a newer ubuntu and require libssl3
308
+ run : |
309
+ echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list
310
+ apt-get update && \
311
+ apt-get install -y --no-install-recommends libssl3 && \
312
+ apt-get clean && \
313
+ rm -rf /var/lib/apt/lists/*
314
+
307
315
- name : Download tests
308
316
uses : actions/download-artifact@v4
309
317
with :
@@ -404,6 +412,14 @@ jobs:
404
412
- 80:80
405
413
406
414
steps :
415
+ - name : Install libssl3 # Our binaries are built on a newer ubuntu and require libssl3
416
+ run : |
417
+ echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list
418
+ apt-get update && \
419
+ apt-get install -y --no-install-recommends libssl3 && \
420
+ apt-get clean && \
421
+ rm -rf /var/lib/apt/lists/*
422
+
407
423
- name : Download tests
408
424
uses : actions/download-artifact@v4
409
425
with :
@@ -454,6 +470,14 @@ jobs:
454
470
fail-fast : false
455
471
456
472
steps :
473
+ - name : Install libssl3 # Our binaries are built on a newer ubuntu and require libssl3
474
+ run : |
475
+ echo "deb http://deb.debian.org/debian bookworm main" > /etc/apt/sources.list.d/bookworm.list
476
+ apt-get update && \
477
+ apt-get install -y --no-install-recommends libssl3 && \
478
+ apt-get clean && \
479
+ rm -rf /var/lib/apt/lists/*
480
+
457
481
- name : Download tests
458
482
uses : actions/download-artifact@v4
459
483
with :
You can’t perform that action at this time.
0 commit comments