ci: Update Ruby version

This commit is contained in:
Matan Kushner 2020-01-17 13:12:13 -05:00
parent 0f2f514074
commit 2dfd3df07d
No known key found for this signature in database
GPG Key ID: 4B98C3A8949CA8A4
2 changed files with 3 additions and 3 deletions

View File

@ -112,7 +112,7 @@ jobs:
# Install Ruby at a fixed version
- uses: eregon/use-ruby-action@v1
with:
ruby-version: "2.6.3"
ruby-version: "2.7.0"
# Install Python at a fixed version
- uses: actions/setup-python@v1

View File

@ -32,7 +32,7 @@ fn folder_with_gemfile() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("💎 v2.6.3"));
let expected = format!("via {} ", Color::Red.bold().paint("💎 v2.7.0"));
assert_eq!(expected, actual);
Ok(())
}
@ -49,7 +49,7 @@ fn folder_with_rb_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("💎 v2.6.3"));
let expected = format!("via {} ", Color::Red.bold().paint("💎 v2.7.0"));
assert_eq!(expected, actual);
Ok(())
}