From 3da4c21388b9f09a9411b47f6f94f6a3690f45fc Mon Sep 17 00:00:00 2001 From: Petros Stergioulas Date: Sun, 4 Jan 2026 12:08:22 +0100 Subject: [PATCH] Add Go versions 1.24 and 1.25 to runtimes --- src/Runtimes/Runtimes.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index fc52752..929c768 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -142,6 +142,8 @@ public function __construct(string $version = '') $go = new Runtime('go', 'Go', 'bash helpers/server.sh'); $go->addVersion('1.23', 'golang:1.23.1-alpine3.20', 'openruntimes/go:'.$this->version.'-1.23', [System::X86, System::ARM64]); + $go->addVersion('1.24', 'golang:1.24.11-alpine3.23', 'openruntimes/go:'.$this->version.'-1.24', [System::X86, System::ARM64]); + $go->addVersion('1.25', 'golang:1.25.5-alpine3.23', 'openruntimes/go:'.$this->version.'-1.25', [System::X86, System::ARM64]); $this->runtimes['go'] = $go; $static = new Runtime('static', 'Static', 'bash helpers/server.sh');