Skip to content

Commit 0f22363

Browse files
committed
Merge branch 'main' of https://github.com/PerfectThymeTech/AzureFunctionPython into marvinbuss/docker
2 parents bd7ef8c + 8b3d970 commit 0f22363

File tree

9 files changed

+15
-15
lines changed

9 files changed

+15
-15
lines changed

.github/workflows/_functionAppDeployTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
# Check Out Repository
4747
- name: Check Out Repository
4848
id: checkout_repository
49-
uses: actions/checkout@v3
49+
uses: actions/checkout@v4
5050

5151
# Setup Python 3.10
5252
- name: Setup Python 3.10

.github/workflows/_functionAppTestTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# Check Out Repository
2424
- name: Check Out Repository
2525
id: checkout_repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727

2828
# Setup Python 3.10
2929
- name: Setup Python 3.10

.github/workflows/_terraformApplyTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
# Check Out Repository
7171
- name: Check Out Repository
7272
id: checkout_repository
73-
uses: actions/checkout@v3
73+
uses: actions/checkout@v4
7474

7575
# Terraform Init
7676
- name: Terraform Init

.github/workflows/_terraformLintTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
# Check Out Repository
3434
- name: Check Out Repository
3535
id: checkout_repository
36-
uses: actions/checkout@v3
36+
uses: actions/checkout@v4
3737

3838
# Terraform Format
3939
- name: Terraform Format

.github/workflows/_terraformPlanTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# Check Out Repository
7272
- name: Check Out Repository
7373
id: checkout_repository
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575

7676
# Terraform Init
7777
- name: Terraform Init

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Checkout repository
3232
- name: Check Out Repository
3333
id: checkout_repository
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535

3636
# Run Linting
3737
- name: Run Linting

.github/workflows/terraform.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
uses: ./.github/workflows/_terraformLintTemplate.yml
2020
name: "Terraform Lint"
2121
with:
22-
terraform_version: "1.4.6"
22+
terraform_version: "1.5.6"
2323
working_directory: "./code/infra"
2424

2525
terraform_plan_dev:
@@ -28,7 +28,7 @@ jobs:
2828
needs: [terraform_lint]
2929
with:
3030
environment: "dev"
31-
terraform_version: "1.4.6"
31+
terraform_version: "1.5.6"
3232
working_directory: "./code/infra"
3333
secrets:
3434
TENANT_ID: ${{ secrets.TENANT_ID }}
@@ -44,7 +44,7 @@ jobs:
4444
if: github.event_name == 'push' || github.event_name == 'release'
4545
with:
4646
environment: "dev"
47-
terraform_version: "1.4.6"
47+
terraform_version: "1.5.6"
4848
working_directory: "./code/infra"
4949
secrets:
5050
TENANT_ID: ${{ secrets.TENANT_ID }}

code/function/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
# azure-identity~=1.13.0
66
azure-functions~=1.17.0
7-
fastapi~=0.103.0
7+
fastapi~=0.104.0
88
pydantic-settings~=2.0.3
9-
aiohttp~=3.8.5
10-
opentelemetry-instrumentation-fastapi==0.40b0
11-
azure-monitor-opentelemetry-exporter==1.0.0b15
9+
aiohttp~=3.8.6
10+
opentelemetry-instrumentation-fastapi==0.41b0
11+
azure-monitor-opentelemetry-exporter==1.0.0b17

code/infra/terraform.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ terraform {
44
required_providers {
55
azurerm = {
66
source = "hashicorp/azurerm"
7-
version = "3.71.0"
7+
version = "3.77.0"
88
}
99
azapi = {
1010
source = "azure/azapi"
11-
version = "1.8.0"
11+
version = "1.9.0"
1212
}
1313
}
1414

0 commit comments

Comments
 (0)