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');