Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update default memgraph version to 2.19 #512

Merged
merged 1 commit into from
Sep 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/reusable_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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."
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.cugraph
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down