1
0
Fork 0
mirror of https://github.com/Eggbertx/gochan.git synced 2025-09-02 12:36:24 -07:00

Update Vagrant Ubuntu box to 20.04, update Go version to 1.20

This commit is contained in:
Eggbertx 2023-08-30 12:32:41 -07:00
parent 13f97233a8
commit 14c209e89b
3 changed files with 4 additions and 4 deletions

4
vagrant/Vagrantfile vendored
View file

@ -8,9 +8,9 @@ if DBTYPE != "mysql" && DBTYPE != "postgresql" && DBTYPE != "sqlite3"
end
PROVIDER = ENV.fetch("GC_PROVIDER", "virtualbox") # can be virtualbox or libvirt
BOX = "generic/ubuntu1804"
BOX = "generic/ubuntu2004"
if PROVIDER == "virtualbox"
BOX = "ubuntu/bionic64"
BOX = "ubuntu/focal64"
end
Vagrant.configure("2") do |config|