Skip to content

Commit b49fbeb

Browse files
committed
Upgrade azure/login and docker/setup-buildx-action to latest major versions
1 parent 8a7d1cc commit b49fbeb

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/_deploy-container.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ jobs:
5858
path: ${{ inputs.artifacts_path }}
5959

6060
- name: Login to Azure
61-
uses: azure/login@v2
61+
uses: azure/login@v3
6262
with:
6363
client-id: ${{ env.SERVICE_PRINCIPAL_ID }}
6464
tenant-id: ${{ env.TENANT_ID }}
@@ -83,7 +83,7 @@ jobs:
8383
# For staging, build and push the image
8484
- name: Setup Docker Buildx
8585
if: inputs.azure_environment == 'stage'
86-
uses: docker/setup-buildx-action@v3
86+
uses: docker/setup-buildx-action@v4
8787

8888
- name: Build and Push Container Image
8989
if: inputs.azure_environment == 'stage'

.github/workflows/_deploy-infrastructure.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ jobs:
6767
bicep --version
6868
6969
- name: Login to Azure
70-
uses: azure/login@v2
70+
uses: azure/login@v3
7171
with:
7272
client-id: ${{ inputs.service_principal_id }}
7373
tenant-id: ${{ inputs.tenant_id }}
@@ -132,7 +132,7 @@ jobs:
132132
bicep --version
133133
134134
- name: Login to Azure
135-
uses: azure/login@v2
135+
uses: azure/login@v3
136136
with:
137137
client-id: ${{ inputs.service_principal_id }}
138138
tenant-id: ${{ inputs.tenant_id }}
@@ -152,7 +152,7 @@ jobs:
152152
run: bash ./cloud-infrastructure/cluster/deploy-cluster.sh ${{ inputs.unique_prefix }} ${{ inputs.azure_environment }} ${{ inputs.cluster_location }} ${{ inputs.cluster_location_acronym }} ${{ inputs.postgres_admin_object_id }} ${{ inputs.domain_name }} --apply
153153

154154
- name: Refresh Azure Tokens # The previous step may take a while, so we refresh the token to avoid timeouts
155-
uses: azure/login@v2
155+
uses: azure/login@v3
156156
with:
157157
client-id: ${{ inputs.service_principal_id }}
158158
tenant-id: ${{ inputs.tenant_id }}

.github/workflows/_migrate-database.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
run: dotnet build ${{ inputs.relative_startup_project }}
7474

7575
- name: Login to Azure
76-
uses: azure/login@v2
76+
uses: azure/login@v3
7777
with:
7878
client-id: ${{ inputs.service_principal_id }}
7979
tenant-id: ${{ env.TENANT_ID }}
@@ -248,7 +248,7 @@ jobs:
248248
uses: actions/checkout@v6
249249

250250
- name: Login to Azure
251-
uses: azure/login@v2
251+
uses: azure/login@v3
252252
with:
253253
client-id: ${{ inputs.service_principal_id }}
254254
tenant-id: ${{ env.TENANT_ID }}

0 commit comments

Comments
 (0)