Skip to content

Commit 1935863

Browse files
authored
Merge pull request #158 from pythonkr/fix/deployment-workflow-secrets-error
Feat: Python 버전업 시도
2 parents 72359ba + 97778c7 commit 1935863

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.9]
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.9]
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.8]
15+
python-version: ['3.10']
1616

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

0 commit comments

Comments
 (0)