Skip to content

Commit 97778c7

Browse files
committed
Fix: 3.10을 3.1로 인식하는 이슈 수정
1 parent bdcfeb9 commit 97778c7

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/deploy_on_dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10]
14+
python-version: ['3.10']
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/deploy_on_prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
strategy:
1313
matrix:
14-
python-version: [3.10]
14+
python-version: ['3.10']
1515

1616
steps:
1717
- uses: actions/checkout@v2

.github/workflows/pull-request-merge-precondition.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: [3.10]
15+
python-version: ['3.10']
1616

1717
steps:
1818
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)