From c0dd7ed51f68ee2edaae5861e5cc421894b3d9b8 Mon Sep 17 00:00:00 2001 From: nottnottloop <6772127+nottnottloop@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:22:16 +0000 Subject: [PATCH] Update Vagrant to latest Ubuntu LTS --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index c59e41a2..4be5831a 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,7 +1,7 @@ VAGRANTFILE_API_VERSION = '2' Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| - config.vm.box = 'ubuntu/bionic64' + config.vm.box = 'ubuntu/jammy64' config.vm.provision :shell, path: './vagrant/development.sh' config.vm.network :forwarded_port, guest: 9292, host: 9292