Skip to content

Commit 394eab6

Browse files
wyattwalterclaude
andcommitted
ci: pin the mongo sidecar image to 7.0
MongoDB 8.x images refuse to start on Linux kernels 6.19 through 7.0.13 (SERVER-121912, bundled TCMalloc incompatibility), and the refreshed GitHub runner image carries an affected kernel — every Cypress shard scheduled on one fails during setup. MongoDB 7.0 is unaffected and well within the supported range. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
1 parent b3f9a68 commit 394eab6

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci-test-custom-script.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
# Opens tcp port 6379 on the host and service container
6363
- 6379:6379
6464
mongo:
65-
image: mongo
65+
image: mongo:7.0
6666
ports:
6767
- 27017:27017
6868

.github/workflows/ci-test-hosted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
# Opens tcp port 6379 on the host and service container
4343
- 6379:6379
4444
mongo:
45-
image: mongo
45+
image: mongo:7.0
4646
ports:
4747
- 27017:27017
4848

.github/workflows/ci-test-limited-with-count.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# Opens tcp port 6379 on the host and service container
8181
- 6379:6379
8282
mongo:
83-
image: mongo
83+
image: mongo:7.0
8484
ports:
8585
- 27017:27017
8686

.github/workflows/ci-test-limited.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
ports:
5757
- 6379:6379
5858
mongo:
59-
image: mongo
59+
image: mongo:7.0
6060
ports:
6161
- 27017:27017
6262

.github/workflows/ci-test-playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
ports:
5454
- 6379:6379
5555
mongo:
56-
image: mongo
56+
image: mongo:7.0
5757
ports:
5858
- 27017:27017
5959

.github/workflows/external-pr-validation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ jobs:
115115
ports:
116116
- 6379:6379
117117
mongo:
118-
image: mongo
118+
image: mongo:7.0
119119
ports:
120120
- 27017:27017
121121
defaults:

0 commit comments

Comments
 (0)