Skip to content

Commit ffeaf31

Browse files
author
Maxime Réty
authored
Merge pull request #31 from TankerHQ/max/quote-versions
fix(ci): use string version numbers
2 parents 9e5034a + 0188dec commit ffeaf31

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
9-
ruby-version: [2.5, 2.6, 2.7]
9+
ruby-version: ['2.5', '2.6', '2.7']
1010
steps:
1111
- uses: actions/checkout@v1
1212
- name: Set up Ruby ${{ matrix.ruby-version }}

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
- name: Set up Python
1313
uses: actions/setup-python@v1
1414
with:
15-
python-version: 3.8
15+
python-version: '3.8'
1616
- name: Set up Ruby
1717
uses: actions/setup-ruby@v1
1818
with:
19-
ruby-version: 2.7
19+
ruby-version: '2.7'
2020
- name: Install and configure poetry
2121
run: python -m pip install poetry
2222
- name: Install python packages

.github/workflows/install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
ruby-version: [2.5, 2.6, 2.7]
11+
ruby-version: ['2.5', '2.6', '2.7']
1212
steps:
1313
- name: Set up Ruby ${{ matrix.ruby-version }}
1414
uses: actions/setup-ruby@v1

0 commit comments

Comments
 (0)