From 0ade289595b1ed4e85396f2373aadbf10b9f2195 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 21 Aug 2024 07:44:05 +0000 Subject: [PATCH] Add go 1.23 --- src/Runtimes/Runtimes.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index 0af94eb..fcd155f 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -109,6 +109,7 @@ public function __construct(string $version = '') $go = new Runtime('go', 'Go', 'sh helpers/server.sh'); $go->addVersion('1.22', 'golang:1.22-alpine', 'openruntimes/go:'.$this->version.'-1.22', [System::X86, System::ARM64]); + $go->addVersion('1.23', 'golang:1.23-alpine', 'openruntimes/go:'.$this->version.'-1.23', [System::X86, System::ARM64]); $this->runtimes['go'] = $go; }