From 76f10c801e8daae7b79b4134246f7a2f1ca156f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jul 2024 20:14:06 +0000 Subject: [PATCH 1/5] Bump docker-api from 2.2.0 to 2.3.0 Bumps [docker-api](https://github.com/swipely/docker-api) from 2.2.0 to 2.3.0. - [Release notes](https://github.com/swipely/docker-api/releases) - [Commits](https://github.com/swipely/docker-api/commits) --- updated-dependencies: - dependency-name: docker-api dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index d0be806..fff67ca 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,10 +3,10 @@ GEM specs: ansi (1.5.0) diff-lcs (1.5.0) - docker-api (2.2.0) - excon (>= 0.47.0) + docker-api (2.3.0) + excon (>= 0.64.0) multi_json - excon (0.84.0) + excon (0.111.0) hashie (5.0.0) itamae (1.14.1) ansi From 124cce2e92f0268e9254a0c7db74a09a5ded205e Mon Sep 17 00:00:00 2001 From: sue445 Date: Tue, 9 Jul 2024 21:21:52 +0900 Subject: [PATCH 2/5] excon-0.111.0 requires ruby version >= 2.7.0 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 81c3435..1e9f121 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: matrix: ruby: - - "2.5" + - "2.7" image: - centos:6 - centos:7 From f79e8753ba2c40658e03d7ef4d436a72147b8250 Mon Sep 17 00:00:00 2001 From: sue445 Date: Tue, 9 Jul 2024 21:24:58 +0900 Subject: [PATCH 3/5] Upgrade bundler --- Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile.lock b/Gemfile.lock index fff67ca..8c79ccc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -62,4 +62,4 @@ DEPENDENCIES serverspec BUNDLED WITH - 1.16.1 + 2.5.11 From 9ba60e64769a2d05d9e302cc19a594b83e1d28bb Mon Sep 17 00:00:00 2001 From: sue445 Date: Tue, 9 Jul 2024 21:22:37 +0900 Subject: [PATCH 4/5] Remove vesion lock --- Gemfile | 2 +- Gemfile.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Gemfile b/Gemfile index 975d353..c4db4b7 100644 --- a/Gemfile +++ b/Gemfile @@ -4,7 +4,7 @@ group :test, :development do gem "docker-api" gem "itamae" gem "net-scp", ">= 3.0.0" - gem "net-ssh", "6.1.0" # net-ssh v7.0.0+ requires Ruby 2.6.0+ + gem "net-ssh" gem "rake" gem "serverspec" end diff --git a/Gemfile.lock b/Gemfile.lock index 8c79ccc..63510a6 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -57,7 +57,7 @@ DEPENDENCIES docker-api itamae net-scp (>= 3.0.0) - net-ssh (= 6.1.0) + net-ssh rake serverspec From c568ded8f7e8d4f6e59e83b0a13ed1d325d37a64 Mon Sep 17 00:00:00 2001 From: sue445 Date: Tue, 9 Jul 2024 21:26:54 +0900 Subject: [PATCH 5/5] bundler 2.5.14 requires Ruby 3.0+ --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1e9f121..80f762e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: matrix: ruby: - - "2.7" + - "3.0" image: - centos:6 - centos:7