Skip to content

Commit 6208332

Browse files
authored
Drop support for Ruby 2.5 (#1588)
1 parent 0af1c01 commit 6208332

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
ruby-version: [2.5, 2.6, 2.7, '3.0', 3.1]
15+
ruby-version: [2.6, 2.7, '3.0', 3.1]
1616

1717
steps:
1818
- uses: actions/checkout@v2

.github/workflows/deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313
env:
14-
ruby-version: 2.5
14+
ruby-version: 2.6
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/dev_deploy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
runs-on: ubuntu-latest
5555
env:
56-
ruby-version: 2.5
56+
ruby-version: 2.6
5757

5858
steps:
5959
- uses: actions/checkout@v2

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ruby '>= 2.5'
1+
ruby '>= 2.6'
22
source 'https://rubygems.org'
33

44
# Middleman

Vagrantfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Vagrant.configure(2) do |config|
2-
config.vm.box = "ubuntu/bionic64"
2+
config.vm.box = "ubuntu/focal64"
33
config.vm.network :forwarded_port, guest: 4567, host: 4567
44
config.vm.provider "virtualbox" do |vb|
55
vb.memory = "2048"
@@ -28,7 +28,7 @@ Vagrant.configure(2) do |config|
2828
echo "=============================================="
2929
echo "Installing app dependencies"
3030
cd /vagrant
31-
sudo gem install bundler -v "$(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -n 1)"
31+
sudo gem install bundler -v "$(grep -A 1 "BUNDLED WITH" Gemfile.lock | tail -n 1)"
3232
bundle config build.nokogiri --use-system-libraries
3333
bundle install
3434
SHELL

0 commit comments

Comments
 (0)