Merge pull request #9393 from AkihiroSuda/ci-fedora39

CI: update Fedora to 39
This commit is contained in:
Samuel Karp 2023-11-17 21:24:47 +00:00 committed by GitHub
commit 349c8d12c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -538,7 +538,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
box: box:
- fedora/38-cloud-base - fedora/39-cloud-base
- rockylinux/8@8.0.0 - rockylinux/8@8.0.0
env: env:
BOX: ${{ matrix.box }} BOX: ${{ matrix.box }}

2
Vagrantfile vendored
View File

@ -17,7 +17,7 @@
# Vagrantfile for Fedora and EL # Vagrantfile for Fedora and EL
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = ENV["BOX"] ? ENV["BOX"].split("@")[0] : "fedora/38-cloud-base" config.vm.box = ENV["BOX"] ? ENV["BOX"].split("@")[0] : "fedora/39-cloud-base"
# BOX_VERSION is deprecated. Use "BOX=<BOX>@<BOX_VERSION>". # BOX_VERSION is deprecated. Use "BOX=<BOX>@<BOX_VERSION>".
config.vm.box_version = ENV["BOX_VERSION"] || (ENV["BOX"].split("@")[1] if ENV["BOX"]) config.vm.box_version = ENV["BOX_VERSION"] || (ENV["BOX"].split("@")[1] if ENV["BOX"])