Skip to content

Commit 76553d2

Browse files
Merge pull request #294962 from juliakm/users/jukullam/update-azurelogin
Update versioning of azure/login action
2 parents d7f3080 + b45f90b commit 76553d2

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/app-service/includes/deploy-github-actions/deploy-github-actions-openid-connect.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.custom: devx-track-azurecli
66
ms.date: 01/16/2025
77
---
88

9-
To deploy with OpenID Connect using the managed identity you configured, use the `azure/login@v1` action with the `client-id`, `tenant-id`, and `subscription-id` keys. Reference the GitHub secrets that you created earlier.
9+
To deploy with OpenID Connect using the managed identity you configured, use the `azure/login@v2` action with the `client-id`, `tenant-id`, and `subscription-id` keys. Reference the GitHub secrets that you created earlier.
1010

1111
# [ASP.NET Core](#tab/aspnetcore)
1212

@@ -31,7 +31,7 @@ jobs:
3131
steps:
3232
# Checkout the repo
3333
- uses: actions/checkout@main
34-
- uses: azure/login@v1
34+
- uses: azure/login@v2
3535
with:
3636
client-id: ${{ secrets.AZURE_CLIENT_ID }}
3737
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -89,7 +89,7 @@ jobs:
8989
# checkout the repo
9090
- uses: actions/checkout@main
9191
92-
- uses: azure/login@v1
92+
- uses: azure/login@v2
9393
with:
9494
client-id: ${{ secrets.AZURE_CLIENT_ID }}
9595
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -140,7 +140,7 @@ jobs:
140140
141141
steps:
142142
- uses: actions/checkout@v4
143-
- uses: azure/login@v1
143+
- uses: azure/login@v2
144144
with:
145145
client-id: ${{ secrets.AZURE_CLIENT_ID }}
146146
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -240,7 +240,7 @@ jobs:
240240
- name: 'Checkout GitHub Action'
241241
uses: actions/checkout@main
242242
243-
- uses: azure/login@v1
243+
- uses: azure/login@v2
244244
with:
245245
client-id: ${{ secrets.AZURE_CLIENT_ID }}
246246
tenant-id: ${{ secrets.AZURE_TENANT_ID }}
@@ -292,7 +292,7 @@ jobs:
292292
steps:
293293
- uses: actions/checkout@v4
294294
295-
- uses: azure/login@v1
295+
- uses: azure/login@v2
296296
with:
297297
client-id: ${{ secrets.AZURE_CLIENT_ID }}
298298
tenant-id: ${{ secrets.AZURE_TENANT_ID }}

articles/app-service/includes/deploy-github-actions/deploy-github-actions-service-principal.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.custom: devx-track-azurecli
66
ms.date: 01/16/2025
77
---
88

9-
To deploy with the service principal you configured, use the `azure/login@v1` action with the `creds` key and reference the `AZURE_CREDENTIALS` secret that you created earlier.
9+
To deploy with the service principal you configured, use the `azure/login@v2` action with the `creds` key and reference the `AZURE_CREDENTIALS` secret that you created earlier.
1010

1111
# [ASP.NET Core](#tab/aspnetcore)
1212

@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
# Checkout the repo
2929
- uses: actions/checkout@main
30-
- uses: azure/login@v1
30+
- uses: azure/login@v2
3131
with:
3232
creds: ${{ secrets.AZURE_CREDENTIALS }}
3333

@@ -79,7 +79,7 @@ jobs:
7979
# checkout the repo
8080
- uses: actions/checkout@main
8181
82-
- uses: azure/login@v1
82+
- uses: azure/login@v2
8383
with:
8484
creds: ${{ secrets.AZURE_CREDENTIALS }}
8585
@@ -124,7 +124,7 @@ jobs:
124124
125125
steps:
126126
- uses: actions/checkout@v4
127-
- uses: azure/login@v1
127+
- uses: azure/login@v2
128128
with:
129129
creds: ${{ secrets.AZURE_CREDENTIALS }}
130130
- name: Set up JDK 1.8
@@ -219,7 +219,7 @@ jobs:
219219
- name: 'Checkout GitHub Action'
220220
uses: actions/checkout@main
221221
222-
- uses: azure/login@v1
222+
- uses: azure/login@v2
223223
with:
224224
creds: ${{ secrets.AZURE_CREDENTIALS }}
225225
@@ -267,7 +267,7 @@ jobs:
267267
steps:
268268
- uses: actions/checkout@v4
269269
270-
- uses: azure/login@v1
270+
- uses: azure/login@v2
271271
with:
272272
creds: ${{ secrets.AZURE_CREDENTIALS }}
273273

0 commit comments

Comments
 (0)