ci: correctly checkout vim-flavor using https://

Currently, the CI throws:

The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.

So update vim-flavor to 4.0.1 which uses https:// links instead of
un-authenticated git protocol. Unfortunately, we have to update ruby to
version 3.0 with that.

Let's see if this works.
This commit is contained in:
Christian Brabandt 2022-03-23 20:44:44 +01:00
parent 1d486430cc
commit 0f237d8b6b
No known key found for this signature in database
GPG Key ID: F3F92DA383FDDE09
2 changed files with 3 additions and 3 deletions

View File

@ -27,9 +27,9 @@ jobs:
uses: actions/checkout@master uses: actions/checkout@master
- name: Setup Ruby - name: Setup Ruby
uses: actions/setup-ruby@v1 uses: ruby/setup-ruby@v1
with: with:
ruby-version: '2.6' ruby-version: '3.0'
- name: Setup Bundle - name: Setup Bundle
run: | run: |

View File

@ -1,2 +1,2 @@
source 'https://rubygems.org' source 'https://rubygems.org'
gem 'vim-flavor', '~> 2.2.2' gem 'vim-flavor', '~> 4.0.1'