Skip to content

Commit a8262fe

Browse files
author
Roman Janusz
committed
updated mongodb-github-actions, mongodb and enabled replica set
1 parent df04e31 commit a8262fe

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ jobs:
6262
node-version: 12
6363

6464
- name: Setup MongoDB
65-
uses: supercharge/mongodb-github-action@1.3.0
65+
uses: supercharge/mongodb-github-action@1.7.0
6666
with:
67-
mongodb-version: 4.4
67+
mongodb-version: 5.0.8
68+
mongodb-replica-set: test-rs
6869

6970
- name: Setup Redis
7071
run: ./install-redis.sh

project/Build.scala

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,12 @@ object Build extends BuildDef {
107107
params = Map("node-version" -> "12")
108108
),
109109
WorkflowStep.Use(
110-
"supercharge", "mongodb-github-action", "1.3.0",
110+
"supercharge", "mongodb-github-action", "1.7.0",
111111
name = Some("Setup MongoDB"),
112-
params = Map("mongodb-version" -> "4.4")
112+
params = Map(
113+
"mongodb-version" -> "5.0.8",
114+
"mongodb-replica-set" -> "test-rs",
115+
)
113116
),
114117
WorkflowStep.Run(
115118
List("./install-redis.sh"),

0 commit comments

Comments
 (0)