From 51f34ff49117ab403619752524f9ba90e42dca04 Mon Sep 17 00:00:00 2001 From: Akihiro Suda Date: Thu, 4 Jul 2024 23:50:35 +0900 Subject: [PATCH] CI: update Fedora to 40 Signed-off-by: Akihiro Suda --- .github/workflows/ci.yml | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ee84cf7313e7..14fca6a53f62 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -527,7 +527,7 @@ jobs: fail-fast: false matrix: box: - - fedora/39-cloud-base + - fedora/40-cloud-base # We have to keep EL8 to test old glibc, cgroup, kernel, etc. # The image was changed from rockylinux/8 to almalinux/8, # as the former one no longer works: diff --git a/Vagrantfile b/Vagrantfile index 1b912a7e398f..6220dba8b22c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -17,7 +17,7 @@ # Vagrantfile for Fedora and EL Vagrant.configure("2") do |config| - config.vm.box = ENV["BOX"] ? ENV["BOX"].split("@")[0] : "fedora/39-cloud-base" + config.vm.box = ENV["BOX"] ? ENV["BOX"].split("@")[0] : "fedora/40-cloud-base" # BOX_VERSION is deprecated. Use "BOX=@". config.vm.box_version = ENV["BOX_VERSION"] || (ENV["BOX"].split("@")[1] if ENV["BOX"])