From df34202b61779700e49aa18c4c816aeb53d458d1 Mon Sep 17 00:00:00 2001 From: Motti Bechhofer Date: Thu, 16 May 2024 13:28:36 +0300 Subject: [PATCH] change neo4j docker version --- .github/workflows/daily-test.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- packages/instrumentation-neo4j/test/neo4j.spec.ts | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/daily-test.yml b/.github/workflows/daily-test.yml index ef68e6ce..d75ee6dc 100644 --- a/.github/workflows/daily-test.yml +++ b/.github/workflows/daily-test.yml @@ -24,12 +24,12 @@ jobs: - 27017:27017 neo4j: - image: neo4j:4.2.3 + image: neo4j:4.4.34 ports: - 7474:7474 - 11011:7687 env: - NEO4J_AUTH: neo4j/test + NEO4J_AUTH: neo4j/your_password steps: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 00020e69..867fafbe 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,12 +23,12 @@ jobs: - 27017:27017 neo4j: - image: neo4j:4.2.3 + image: neo4j:4.4.34 ports: - 7474:7474 - 11011:7687 env: - NEO4J_AUTH: neo4j/test + NEO4J_AUTH: neo4j/your_password steps: diff --git a/packages/instrumentation-neo4j/test/neo4j.spec.ts b/packages/instrumentation-neo4j/test/neo4j.spec.ts index 35084ec2..a548d70e 100644 --- a/packages/instrumentation-neo4j/test/neo4j.spec.ts +++ b/packages/instrumentation-neo4j/test/neo4j.spec.ts @@ -20,7 +20,7 @@ import { ReadableSpan } from '@opentelemetry/sdk-trace-base'; * Tests require neo4j to run, and expose bolt port of 11011 * * Use this command to run the required neo4j using docker: - * docker run --name testneo4j -p7474:7474 -p11011:7687 -d --env NEO4J_AUTH=neo4j/test neo4j:4.2.3 + * docker run --name testneo4j -p7474:7474 -p11011:7687 -d --env NEO4J_AUTH=neo4j/test neo4j:4.4.34 * */ describe('neo4j instrumentation', function () { @@ -464,7 +464,7 @@ describe('neo4j instrumentation', function () { before(() => { if (shouldCheck) { - routingDriver = neo4j.driver('neo4j://localhost:11011', neo4j.auth.basic('neo4j', 'test')); + routingDriver = neo4j.driver('neo4j://localhost:11011', neo4j.auth.basic('neo4j', 'your_password')); } });