Skip to content

Commit ad4466d

Browse files
committed
Use quotes around 3.10 version
1 parent c0028d5 commit ad4466d

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/on-merge.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
runs-on: ubuntu-latest
8686
strategy:
8787
matrix:
88-
python-version: [3.10, 3.13]
88+
python-version: ['3.10', '3.13']
8989
steps:
9090
- uses: actions/checkout@v4
9191
- name: Setup Poetry

.github/workflows/project-cleanup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v4
2121
- uses: ./.github/actions/setup-poetry
2222
with:
23-
python_version: 3.10
23+
python_version: '3.10'
2424
- uses: ./.github/actions/project-delete
2525
with:
2626
FERNET_ENCRYPTION_KEY: '${{ secrets.FERNET_ENCRYPTION_KEY }}'

.github/workflows/project-setup.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v4
2323
- uses: ./.github/actions/setup-poetry
2424
with:
25-
python_version: 3.10
25+
python_version: '3.10'
2626
- uses: ./.github/actions/project-create
2727
id: create-project-step
2828
with:

.github/workflows/testing-dependency-asyncio.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python_version:
21-
- 3.10
21+
- '3.10'
2222
- 3.13
2323
aiohttp_version:
2424
- 3.10.0

.github/workflows/testing-dependency-grpc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
python_version:
21-
- 3.10
21+
- '3.10'
2222
- "3.10"
2323
grpcio_version:
2424
- 1.44.0

.github/workflows/testing-dependency-rest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
python_version:
22-
- 3.10
22+
- '3.10'
2323
- 3.11
2424
urllib3_version:
2525
- 1.26.0

0 commit comments

Comments
 (0)