Skip to content

Commit 0701b58

Browse files
committed
Merge branch 'main' of https://github.com/PerfectThymeTech/AzureFunctionPython into marvinbuss/add_concurrency
2 parents 5cfb9e9 + 3b30a43 commit 0701b58

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/_containerTemplate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ jobs:
6868
# Install BuildKit
6969
- name: Install Buildx
7070
id: install_buildx
71-
uses: docker/setup-buildx-action@v3.1.0
71+
uses: docker/setup-buildx-action@v3.2.0
7272

7373
# Login Container Registry
7474
- name: Login Container Registry
75-
uses: docker/login-action@v3.0.0
75+
uses: docker/login-action@v3.1.0
7676
id: registry_login
7777
if: github.event_name != 'pull_request'
7878
with:
@@ -97,7 +97,7 @@ jobs:
9797
# Build and Push Docker Image with Buildx
9898
- name: Build and push Docker image
9999
id: build_push
100-
uses: docker/build-push-action@v5.1.0
100+
uses: docker/build-push-action@v5.3.0
101101
with:
102102
context: ${{ inputs.working_directory }}
103103
file: ${{ inputs.working_directory }}/Dockerfile

.github/workflows/_functionAppDeployTemplate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
# Login to Azure
7979
- name: Azure Login
8080
id: azure_login
81-
uses: azure/login@v1
81+
uses: azure/login@v2
8282
with:
8383
creds: '{"clientId":"${{ secrets.CLIENT_ID }}","clientSecret":"${{ secrets.CLIENT_SECRET }}","subscriptionId":"${{ inputs.subscription_id }}","tenantId":"${{ inputs.tenant_id }}"}'
8484

code/function/requirements.txt

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

55
# azure-identity~=1.15.0
66
azure-functions~=1.18.0
7-
fastapi~=0.110.0
7+
fastapi~=0.110.1
88
pydantic-settings~=2.2.1
99
httpx~=0.27.0
10-
azure-monitor-opentelemetry-exporter==1.0.0b23
11-
opentelemetry-instrumentation-fastapi==0.44b0
12-
opentelemetry-instrumentation-httpx~=0.44b0
13-
opentelemetry-instrumentation-system-metrics~=0.44b0
10+
azure-monitor-opentelemetry-exporter==1.0.0b24
11+
opentelemetry-instrumentation-fastapi==0.45b0
12+
opentelemetry-instrumentation-httpx~=0.45b0
13+
opentelemetry-instrumentation-system-metrics~=0.45b0

code/infra/terraform.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ terraform {
44
required_providers {
55
azurerm = {
66
source = "hashicorp/azurerm"
7-
version = "3.94.0"
7+
version = "3.98.0"
88
}
99
azapi = {
1010
source = "azure/azapi"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
pre-commit~=3.6.2
2-
pytest~=8.0.2
1+
pre-commit~=3.7.0
2+
pytest~=8.1.1
33
httpx~=0.27.0

0 commit comments

Comments
 (0)