From 0befa5238166a9cba77f9f4ff16c8c83894a250d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Wed, 21 Aug 2024 10:13:54 +0000 Subject: [PATCH] Remove go.122 --- src/Runtimes/Runtimes.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Runtimes/Runtimes.php b/src/Runtimes/Runtimes.php index fcd155f..c41837a 100644 --- a/src/Runtimes/Runtimes.php +++ b/src/Runtimes/Runtimes.php @@ -108,7 +108,6 @@ public function __construct(string $version = '') $this->runtimes['bun'] = $bun; $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; }