Skip to content

Commit 1389ff9

Browse files
committed
Update Default Python Version and Comment
1 parent 981616d commit 1389ff9

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/_functionAppDeployTemplate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111
python_version:
1212
required: true
1313
type: string
14-
default: "3.10"
14+
default: "3.11"
1515
description: "Specifies the python version."
1616
function_directory:
1717
required: true
@@ -50,8 +50,8 @@ jobs:
5050
id: checkout_repository
5151
uses: actions/checkout@v4
5252

53-
# Setup Python 3.10
54-
- name: Setup Python 3.10
53+
# Setup Python
54+
- name: Setup Python
5555
id: python_setup
5656
uses: actions/setup-python@v5
5757
with:

.github/workflows/_functionAppTestTemplate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
python_version:
77
required: true
88
type: string
9-
default: "3.10"
9+
default: "3.11"
1010
description: "Specifies the python version."
1111
function_directory:
1212
required: true
@@ -25,8 +25,8 @@ jobs:
2525
id: checkout_repository
2626
uses: actions/checkout@v4
2727

28-
# Setup Python 3.10
29-
- name: Setup Python 3.10
28+
# Setup Python
29+
- name: Setup Python
3030
id: python_setup
3131
uses: actions/setup-python@v5
3232
with:

.github/workflows/functionApp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: ./.github/workflows/_functionAppTestTemplate.yml
2020
name: "Function App Test"
2121
with:
22-
python_version: "3.10"
22+
python_version: "3.11"
2323
function_directory: "./code/function"
2424

2525
function_container:

0 commit comments

Comments
 (0)