CI: use Go 1.22 by default

Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
This commit is contained in:
Akihiro Suda
2024-03-29 22:45:03 +09:00
parent fef78c1024
commit 2d5689434d
6 changed files with 7 additions and 7 deletions

2
Vagrantfile vendored
View File

@@ -104,7 +104,7 @@ EOF
config.vm.provision "install-golang", type: "shell", run: "once" do |sh|
sh.upload_path = "/tmp/vagrant-install-golang"
sh.env = {
'GO_VERSION': ENV['GO_VERSION'] || "1.21.9",
'GO_VERSION': ENV['GO_VERSION'] || "1.22.2",
}
sh.inline = <<~SHELL
#!/usr/bin/env bash