Skip to content

Commit f433708

Browse files
committed
Enclosed Python version in double quotes
1 parent 47aa450 commit f433708

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/check-python-eol-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Determine Safe Python Version
1919
id: get_safe_python
2020
run: |
21-
echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
21+
echo "safe_python=\"$(python ./versions.py -mode safe)\"" >> $GITHUB_OUTPUT
2222
- name: Set Up Python
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/check-tutorials-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Determine Safe Python Version
1919
id: get_safe_python
2020
run: |
21-
echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
21+
echo "safe_python=\"$(python ./versions.py -mode safe)\"" >> $GITHUB_OUTPUT
2222
- name: Set Up Python
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/check-url-links-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Determine Safe Python Version
1919
id: get_safe_python
2020
run: |
21-
echo "safe_python=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
21+
echo "safe_python=\"$(python ./versions.py -mode safe)\"" >> $GITHUB_OUTPUT
2222
- name: Set Up Python
2323
uses: actions/setup-python@v5
2424
with:

.github/workflows/numba-python-compatibility-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Get Latest Python Version
2121
id: set-latest
2222
run: |
23-
echo "latest_python_version=$(python ./versions.py -mode latest)" >> $GITHUB_OUTPUT
23+
echo "latest_python_version=\"$(python ./versions.py -mode latest)\"" >> $GITHUB_OUTPUT
2424
shell: bash
2525
check_numba_python_compatibility:
2626
needs: get_latest_python_version

.github/workflows/numba-release-candidate-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
id: set-safe
2222
run: |
2323
python ./versions.py -mode safe
24-
echo "safe_python_version=$(python ./versions.py -mode safe)" >> $GITHUB_OUTPUT
24+
echo "safe_python_version=\"$(python ./versions.py -mode safe)\"" >> $GITHUB_OUTPUT
2525
shell: bash
2626
check_numba_release_candidate:
2727
needs: get_safe_python_version

.github/workflows/ray-actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
id: python
1919
run: |
2020
python -m pip install pandas packaging lxml
21-
echo "version=$(python ./ray_python_version.py)" >> $GITHUB_OUTPUT
21+
echo "version=\"$(python ./ray_python_version.py)\"" >> $GITHUB_OUTPUT
2222
shell: bash
2323
- uses: actions/checkout@v4
2424
- name: Set Up Python

0 commit comments

Comments
 (0)