From 0901a06f4fa35967ff9e20259647560e687c3531 Mon Sep 17 00:00:00 2001 From: j3nsch Date: Tue, 9 Apr 2024 09:03:43 +0200 Subject: [PATCH] #1108 Switch to Solr 9.5 for PHP 8 --- .github/workflows/php.yml | 2 +- Vagrantfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 23e354260..b9236e7ec 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: - versions: [{php: '7.1', solr: '7.7.3'}, {php: '8.1', solr: '9.4.0'}] + versions: [{php: '7.1', solr: '7.7.3'}, {php: '8.1', solr: '9.5.0'}] fail-fast: false name: PHP ${{ matrix.versions.php }} Test diff --git a/Vagrantfile b/Vagrantfile index fb4406975..fb34f4872 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -153,7 +153,7 @@ Vagrant.configure("2") do |config| config.vm.network "forwarded_port", guest: 80, host: 8080, host_ip: "127.0.0.1" config.vm.network "forwarded_port", guest: 8983, host: 9983, host_ip: "127.0.0.1" - ENV['SOLR_VERSION']="9.4.0" + ENV['SOLR_VERSION']="9.5.0" config.vm.provision "Install required software...", type: "shell", inline: $software config.vm.provision "Install pandoc...", type: "shell", inline: $pandoc