From 1916f69425f8a0f86e3d7249a25a116c5cf2a771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Fri, 4 Dec 2020 14:54:50 +0100 Subject: [PATCH 1/3] Update rake to ~> 13.0 --- vagrant.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vagrant.gemspec b/vagrant.gemspec index a452e2b7a..e2327a6e0 100644 --- a/vagrant.gemspec +++ b/vagrant.gemspec @@ -43,7 +43,7 @@ Gem::Specification.new do |s| # Constraint rake to properly handle deprecated method usage # from within rspec - s.add_development_dependency "rake", "~> 12.3.3" + s.add_development_dependency "rake", "~> 13.0" s.add_development_dependency "rspec", "~> 3.5.0" s.add_development_dependency "rspec-its", "~> 1.3.0" s.add_development_dependency "webmock", "~> 2.3.1" From 54f892c6dccaaf09b870179c0a3630fa95ba41e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Fri, 4 Dec 2020 14:55:50 +0100 Subject: [PATCH 2/3] Fix indentation in contrib/README.md --- contrib/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/README.md b/contrib/README.md index a76e0fad8..f1f4cf234 100644 --- a/contrib/README.md +++ b/contrib/README.md @@ -14,4 +14,4 @@ for each item will be kept below. starting machines. * `vim` - Contains a `.vim` file for enabling Ruby syntax highlighting for `Vagrantfile`s in `vim`. - * `zsh` - Contains a zsh script for improving autocompletion with zsh. +* `zsh` - Contains a zsh script for improving autocompletion with zsh. From ac467ce64ac9460498117778a7483826bffde0f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dan=20=C4=8Cerm=C3=A1k?= Date: Fri, 4 Dec 2020 15:09:59 +0100 Subject: [PATCH 3/3] Add Gemfile, vagrant.gemspec & Rakefile to testing github workflow --- .github/workflows/testing.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index e51238d92..dd7a6e342 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -8,6 +8,9 @@ on: - 'lib/**' - 'plugins/**' - 'test/**' + - 'Gemfile' + - 'vagrant.gemspec' + - 'Rakefile' pull_request: branches: - main @@ -16,6 +19,9 @@ on: - 'lib/**' - 'plugins/**' - 'test/**' + - 'Gemfile' + - 'vagrant.gemspec' + - 'Rakefile' jobs: unit-tests: