diff --git a/.github/workflows/reusable_test.yml b/.github/workflows/reusable_test.yml index e8b24539c..6307567cb 100644 --- a/.github/workflows/reusable_test.yml +++ b/.github/workflows/reusable_test.yml @@ -18,7 +18,7 @@ on: memgraph_version: type: string description: "Memgraph version built into this image (format: X.Y.Z)" - default: '2.18.1' + default: '2.19.0' memgraph_download_link: type: string description: "Memgraph package download link. Leave empty to use the official download link." diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c588b8974..0f2e851aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,7 +85,7 @@ jobs: arch: "${{ matrix.arch }}" build_target: "${{ matrix.build_target }}" build_scope: "${{ matrix.build_scope }}" - memgraph_version: "2.18.1" + memgraph_version: "2.19.0" memgraph_ref: "master" memgraph_ref_update: "true" secrets: inherit @@ -116,7 +116,7 @@ jobs: arch: "${{ matrix.arch }}" build_target: "${{ matrix.build_target }}" build_scope: "${{ matrix.build_scope }}" - memgraph_version: "2.18.1" + memgraph_version: "2.19.0" memgraph_ref: "master" memgraph_ref_update: "true" secrets: inherit diff --git a/Dockerfile b/Dockerfile index afdb6be63..9766ba3c3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ FROM debian:bullseye as base USER root -ARG MG_VERSION=2.14.1 +ARG MG_VERSION=2.19.0 ARG PY_VERSION_DEFAULT ENV MG_VERSION ${MG_VERSION} ENV PY_VERSION ${PY_VERSION_DEFAULT} diff --git a/Dockerfile.cugraph b/Dockerfile.cugraph index 3cf299e25..e2fc1680b 100644 --- a/Dockerfile.cugraph +++ b/Dockerfile.cugraph @@ -2,7 +2,7 @@ ARG CUGRAPH_VERSION=22.02 ARG CUDA_VERSION=11.5 ARG CUDA_VERSION_MINOR=11.5.2 ARG PY_VERSION=3.8 -ARG MG_VERSION=2.14.1 +ARG MG_VERSION=2.19.0 FROM rapidsai/rapidsai:${CUGRAPH_VERSION}-cuda${CUDA_VERSION}-runtime-ubuntu20.04-py${PY_VERSION} as cugraph-dev