From 61026f35d9dad5eac50ec988dc3495f9c80155c3 Mon Sep 17 00:00:00 2001 From: barsdeveloper Date: Sat, 7 Mar 2026 19:49:49 +0100 Subject: [PATCH] Update postgres --- src/postgres/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/postgres/mod.rs b/src/postgres/mod.rs index dd40a98..ae956e1 100644 --- a/src/postgres/mod.rs +++ b/src/postgres/mod.rs @@ -3,7 +3,7 @@ use std::{borrow::Cow, collections::HashMap}; use testcontainers::{core::WaitFor, CopyDataSource, CopyToContainer, Image}; const NAME: &str = "postgres"; -const TAG: &str = "11-alpine"; +const TAG: &str = "18-alpine"; /// Module to work with [`Postgres`] inside of tests. ///