mirror of https://github.com/status-im/js-waku.git
chore: bump nwaku version to 0.20 (#1591)
This commit is contained in:
parent
020463c358
commit
9ab4e86f19
|
@ -10,7 +10,7 @@ on:
|
|||
workflow_dispatch:
|
||||
inputs:
|
||||
nim_wakunode_image:
|
||||
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.19.0"
|
||||
description: "Docker hub image name taken from https://hub.docker.com/r/statusteam/nim-waku/tags. Format: statusteam/nim-waku:v0.20.0"
|
||||
required: false
|
||||
type: string
|
||||
|
||||
|
@ -70,13 +70,13 @@ jobs:
|
|||
node:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
||||
test_type: node
|
||||
|
||||
node_optional:
|
||||
uses: ./.github/workflows/test-node.yml
|
||||
with:
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.19.0' }}
|
||||
nim_wakunode_image: ${{ inputs.nim_wakunode_image || 'statusteam/nim-waku:v0.20.0' }}
|
||||
test_type: node-optional
|
||||
|
||||
node_with_go_waku_master:
|
||||
|
|
|
@ -28,7 +28,7 @@ const WAKU_SERVICE_NODE_PARAMS =
|
|||
const NODE_READY_LOG_LINE = "Node setup complete";
|
||||
|
||||
const DOCKER_IMAGE_NAME =
|
||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.19.0";
|
||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
||||
|
||||
const isGoWaku = DOCKER_IMAGE_NAME.includes("go-waku");
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ import { promisify } from "util";
|
|||
const execAsync = promisify(exec);
|
||||
|
||||
const WAKUNODE_IMAGE =
|
||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.19.0";
|
||||
process.env.WAKUNODE_IMAGE || "statusteam/nim-waku:v0.20.0";
|
||||
|
||||
async function main() {
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue