From 604b95b8e4db93016c04cf81fbae4de69fba177b Mon Sep 17 00:00:00 2001 From: Mars Hall Date: Mon, 21 Oct 2024 15:25:37 -0700 Subject: [PATCH] Use newest heroku/builder so that integration tests work on Apple Silicon --- test_support/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_support/src/lib.rs b/test_support/src/lib.rs index a7470ba..5fbc3a3 100644 --- a/test_support/src/lib.rs +++ b/test_support/src/lib.rs @@ -11,7 +11,7 @@ use std::panic; use std::path::PathBuf; use std::time::{Duration, SystemTime}; -const DEFAULT_BUILDER: &str = "heroku/builder:22"; +const DEFAULT_BUILDER: &str = "heroku/builder:24"; pub const PORT: u16 = 8080; pub const DEFAULT_RETRIES: u32 = 10; pub const DEFAULT_RETRY_DELAY: Duration = Duration::from_secs(1);