Skip to content

Commit d46004b

Browse files
authored
Apply suggestions from code review
Fix yaml strings Signed-off-by: Albert Callarisa <[email protected]>
1 parent f4a5ad1 commit d46004b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-push-to-main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python 3.10
1515
uses: actions/setup-python@v6
1616
with:
17-
python-version: 3.10
17+
python-version: '3.10'
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Python 3.10
6868
uses: actions/setup-python@v6
6969
with:
70-
python-version: 3.10
70+
python-version: '3.10'
7171
- name: Install dependencies
7272
run: |
7373
python -m pip install --upgrade pip

.github/workflows/build-tag.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Set up Python 3.10
1919
uses: actions/setup-python@v6
2020
with:
21-
python-version: 3.10
21+
python-version: '3.10'
2222
- name: Install dependencies
2323
run: |
2424
python -m pip install --upgrade pip
@@ -71,7 +71,7 @@ jobs:
7171
- name: Set up Python 3.10
7272
uses: actions/setup-python@v6
7373
with:
74-
python-version: 3.10
74+
python-version: '3.10'
7575
- name: Install dependencies
7676
run: |
7777
python -m pip install --upgrade pip

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python 3.10
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: 3.10
23+
python-version: '3.10'
2424
- name: Install dependencies
2525
run: |
2626
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)