diff --git a/.github/workflows/test_main.yml b/.github/workflows/test_main.yml index 0380633..4c8ba7d 100644 --- a/.github/workflows/test_main.yml +++ b/.github/workflows/test_main.yml @@ -53,6 +53,7 @@ jobs: matrix: image: - ubuntu:trusty + - ubuntu:xenial env: TEST_IMAGE: ${{ matrix.image }} diff --git a/Rakefile b/Rakefile index ad1ad8d..bb3cf55 100644 --- a/Rakefile +++ b/Rakefile @@ -10,7 +10,7 @@ end desc 'Run unit and integration specs.' task :spec => ['spec:unit', 'spec:integration:all'] -TEST_IMAGE = ENV["TEST_IMAGE"] || "ubuntu:trusty" +TEST_IMAGE = ENV["TEST_IMAGE"] || "ubuntu:xenial" namespace :spec do RSpec::Core::RakeTask.new("unit") do |task|