Skip to content

Commit 63cdda1

Browse files
committed
Update Azure CLI and action versions in workflow files
1 parent e747af4 commit 63cdda1

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/create_azure_resources.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,17 +55,17 @@ jobs:
5555
# Set up the following secrets in your repository: AZURE_CREDENTIALS
5656
# For details on usage of secrets, please refer https://help.github.com/en/actions/configuring-and-managing-workflows/creating-and-storing-encrypted-secrets
5757
- name: Azure Login
58-
uses: azure/login@v2.1.1
58+
uses: azure/login@v2.3.0
5959
with:
6060
creds: ${{ secrets.AZURE_CREDENTIALS }}
6161

6262
# Checkout
6363
- name: Checkout
64-
uses: actions/checkout@v4
64+
uses: actions/checkout@v5
6565

6666
# Build ARM Template from Bicep and create a target Azure resource group
6767
- name: Validate Bicep file ${{ env.BICEP_FILE_PATH }}
68-
uses: azure/CLI@v1
68+
uses: azure/CLI@v2
6969
with:
7070
# Specify the script here
7171
inlineScript: |
@@ -75,7 +75,7 @@ jobs:
7575
# Build ARM Template from Bicep and create a target Azure resource group
7676
- name: Deploy Bicep file ${{ env.BICEP_FILE_PATH }}
7777
if: ${{ inputs.DEPLOYMENT_MODE == 'validate and deploy' }}
78-
uses: azure/CLI@v1
78+
uses: azure/CLI@v2
7979
with:
8080
# Specify the script here
8181
inlineScript: |

.github/workflows/deploy_all_functions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,17 @@ jobs:
3838
# Steps represent a sequence of tasks that will be executed as part of the job
3939
steps:
4040
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242

4343
# Login to Azure using secrets credentials
4444
- name: 'Login via Azure CLI'
45-
uses: Azure/login@v2.1.1
45+
uses: Azure/login@v2.3.0
4646
with:
4747
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials
4848

4949
# Setup dotnet command
5050
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
51-
uses: actions/setup-dotnet@v4
51+
uses: actions/setup-dotnet@v5
5252
with:
5353
dotnet-version: ${{ env.DOTNET_VERSION }}
5454

@@ -61,7 +61,7 @@ jobs:
6161
popd
6262
# Deploy build to Azure function app environment
6363
- name: 'Run Azure Functions Action'
64-
uses: Azure/[email protected].2
64+
uses: Azure/[email protected].3
6565
with:
6666
app-name: ${{ matrix.function_name }}
6767
package: '${{ matrix.package_path }}/output'
@@ -110,7 +110,7 @@ jobs:
110110
steps:
111111
# Login to Azure using secrets credentials
112112
- name: 'Login via Azure CLI'
113-
uses: Azure/login@v2.1.1
113+
uses: Azure/login@v2.3.0
114114
with:
115115
creds: ${{ secrets.AZURE_CREDENTIALS }}
116116

.github/workflows/deploy_liquid_functions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ jobs:
3636
# Steps represent a sequence of tasks that will be executed as part of the job
3737
steps:
3838
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040

4141
# Login to Azure using secrets credentials
4242
- name: 'Login via Azure CLI'
43-
uses: Azure/login@v2.1.1
43+
uses: Azure/login@v2.3.0
4444
with:
4545
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials
4646

4747
# Setup dotnet command
4848
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
49-
uses: actions/setup-dotnet@v4
49+
uses: actions/setup-dotnet@v5
5050
with:
5151
dotnet-version: ${{ env.DOTNET_VERSION }}
5252

@@ -59,7 +59,7 @@ jobs:
5959
popd
6060
# Deploy build to Azure function app environment
6161
- name: 'Run Azure Functions Action'
62-
uses: Azure/[email protected].2
62+
uses: Azure/[email protected].3
6363
with:
6464
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
6565
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
@@ -91,7 +91,7 @@ jobs:
9191
steps:
9292
# Login to Azure using secrets credentials
9393
- name: 'Login via Azure CLI'
94-
uses: Azure/login@v2.1.1
94+
uses: Azure/login@v2.3.0
9595
with:
9696
creds: ${{ secrets.AZURE_CREDENTIALS }}
9797

.github/workflows/deploy_solid_functions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ jobs:
3636
# Steps represent a sequence of tasks that will be executed as part of the job
3737
steps:
3838
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040

4141
# Login to Azure using secrets credentials
4242
- name: 'Login via Azure CLI'
43-
uses: Azure/login@v2.1.1
43+
uses: Azure/login@v2.3.0
4444
with:
4545
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials
4646

4747
# Setup dotnet command
4848
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
49-
uses: actions/setup-dotnet@v4
49+
uses: actions/setup-dotnet@v5
5050
with:
5151
dotnet-version: ${{ env.DOTNET_VERSION }}
5252

@@ -59,7 +59,7 @@ jobs:
5959
popd
6060
# Deploy build to Azure function app environment
6161
- name: 'Run Azure Functions Action'
62-
uses: Azure/[email protected].2
62+
uses: Azure/[email protected].3
6363
with:
6464
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
6565
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
@@ -91,7 +91,7 @@ jobs:
9191
steps:
9292
# Login to Azure using secrets credentials
9393
- name: 'Login via Azure CLI'
94-
uses: Azure/login@v2.1.1
94+
uses: Azure/login@v2.3.0
9595
with:
9696
creds: ${{ secrets.AZURE_CREDENTIALS }}
9797

.github/workflows/deploy_solidus_functions.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@ jobs:
3636
# Steps represent a sequence of tasks that will be executed as part of the job
3737
steps:
3838
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040

4141
# Login to Azure using secrets credentials
4242
- name: 'Login via Azure CLI'
43-
uses: Azure/login@v2.1.1
43+
uses: Azure/login@v2.3.0
4444
with:
4545
creds: ${{ secrets.AZURE_CREDENTIALS }} # Your Azure credentials
4646

4747
# Setup dotnet command
4848
- name: Setup DotNet ${{ env.DOTNET_VERSION }} Environment
49-
uses: actions/setup-dotnet@v4
49+
uses: actions/setup-dotnet@v5
5050
with:
5151
dotnet-version: ${{ env.DOTNET_VERSION }}
5252

@@ -59,7 +59,7 @@ jobs:
5959
popd
6060
# Deploy build to Azure function app environment
6161
- name: 'Run Azure Functions Action'
62-
uses: Azure/[email protected].2
62+
uses: Azure/[email protected].3
6363
with:
6464
app-name: ${{ env.AZURE_FUNCTIONAPP_NAME }}
6565
package: '${{ env.AZURE_FUNCTIONAPP_PACKAGE_PATH }}/output'
@@ -91,7 +91,7 @@ jobs:
9191
steps:
9292
# Login to Azure using secrets credentials
9393
- name: 'Login via Azure CLI'
94-
uses: Azure/login@v2.1.1
94+
uses: Azure/login@v2.3.0
9595
with:
9696
creds: ${{ secrets.AZURE_CREDENTIALS }}
9797

0 commit comments

Comments
 (0)