From bda4ef1cfe6c16ed8cd2a5129a45200eac1ecedf Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Mon, 1 Apr 2024 17:42:09 +0900 Subject: [PATCH 1/2] Update default ubuntu on integration spec to xenial trusty eol date is 2024-04-02 --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index ad1ad8da..bb3cf55d 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| From a465a8743467fe3af6b5c4af6c3b3712227d10f0 Mon Sep 17 00:00:00 2001 From: Yusuke Nakamura Date: Mon, 1 Apr 2024 17:42:56 +0900 Subject: [PATCH 2/2] Add xenial to docker integration test matrix --- .github/workflows/test_main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test_main.yml b/.github/workflows/test_main.yml index 03806334..4c8ba7d9 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 }}