Skip to content

Commit 213ee2b

Browse files
russdayghCopilot
andcommitted
Update GitHub workflows
Co-authored-by: Copilot <copilot@github.com>
1 parent 48fcd26 commit 213ee2b

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/DeployBlazorClient.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
environment: dev
1010
name: Build and Deploy Job
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313
with:
1414
submodules: true
1515
- name: Build And Deploy

.github/workflows/DeployEverything.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v4
3838
- name: Log in with Azure
39-
uses: azure/login@v1
39+
uses: azure/login@v2
4040
with:
4141
creds: '${{ secrets.AZURE_CREDENTIALS }}'
4242
- name: Setup terraform
@@ -79,7 +79,7 @@ jobs:
7979
needs: [deploy_terraform, build_api_server]
8080
steps:
8181
- name: Log in with Azure
82-
uses: azure/login@v1
82+
uses: azure/login@v2
8383
with:
8484
creds: '${{ secrets.AZURE_CREDENTIALS }}'
8585
- name: Download artifact from build job
@@ -88,7 +88,7 @@ jobs:
8888
name: webapp
8989
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
9090
- name: Deploy to Azure WebApp
91-
uses: azure/webapps-deploy@v2
91+
uses: azure/webapps-deploy@v3
9292
with:
9393
app-name: pocketddd-${{ inputs.env }}-api-server-web-app
9494
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
@@ -99,11 +99,11 @@ jobs:
9999
name: Build and Deploy Blazor Client
100100
needs: deploy_terraform
101101
steps:
102-
- uses: actions/checkout@v2
102+
- uses: actions/checkout@v4
103103
with:
104104
submodules: true
105105
- name: Log in with Azure
106-
uses: azure/login@v1
106+
uses: azure/login@v2
107107
with:
108108
creds: '${{ secrets.AZURE_CREDENTIALS }}'
109109

.github/workflows/DeployServerWebAPI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Setup .NET SDK
17-
uses: actions/setup-dotnet@v3
17+
uses: actions/setup-dotnet@v4
1818
with:
1919
dotnet-version: ${{ env.DOTNET_CORE_VERSION }}
2020
- name: Restore
@@ -37,7 +37,7 @@ jobs:
3737
needs: build
3838
steps:
3939
- name: Log in with Azure
40-
uses: azure/login@v1
40+
uses: azure/login@v2
4141
with:
4242
creds: '${{ secrets.AZURE_CREDENTIALS }}'
4343
- name: Download artifact from build job
@@ -46,7 +46,7 @@ jobs:
4646
name: webapp
4747
path: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}
4848
- name: Deploy to Azure WebApp
49-
uses: azure/webapps-deploy@v2
49+
uses: azure/webapps-deploy@v3
5050
with:
5151
app-name: pocketddd-dev-api-server
5252
package: ${{ env.AZURE_WEBAPP_PACKAGE_PATH }}

0 commit comments

Comments
 (0)